mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
11 lines
178 B
Python
11 lines
178 B
Python
def sum_pairs(ints, s):
|
|
passed = {}
|
|
|
|
for num in ints:
|
|
other = s - num
|
|
if other in passed:
|
|
return [other, num]
|
|
else:
|
|
passed[num] = True
|
|
|
|
return None
|