Skip to content

Commit 3023f25

Browse files
committed
Three number sum completed in O(n^2)
1 parent 164981e commit 3023f25

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

.idea/dictionaries/josancamon19.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.9. three-number-sum.py

+20-10
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@
22

33

44
def threeNumberSum(array, targetSum):
5-
items = dict(Counter(array))
6-
for item1, counter1 in items.items():
7-
if counter1 > 0:
8-
for item2, counter2 in items.items():
9-
item3_expected = targetSum - item1 - item2
10-
if (item1 == item2 or item1 == item3_expected or item2 == item3_expected) and counter2 < 2:
11-
continue
12-
if item3_expected in items:
13-
print(item1, item2, item3_expected)
5+
array.sort() # nlogn
6+
results = []
7+
for current in range(len(array)):
8+
left = current + 1
9+
right = len(array) - 1
10+
while left < right:
11+
result = array[current] + array[left] + array[right]
12+
if result == targetSum:
13+
results.append([array[current], array[left], array[right]])
14+
left += 1
15+
right -= 1
16+
elif result < targetSum:
17+
left += 1
18+
else:
19+
right -= 1
20+
return results
1421

1522

1623
if __name__ == '__main__':
17-
threeNumberSum([12, 3, 1, 2, -6, 5, -8, 6], 0)
24+
print(threeNumberSum([12, 3, 1, 2, -6, 5, -8, 6], 0))
25+
print(threeNumberSum([1, 2, 3, 4, 5, 6, 7, 8, 9, 15], 33))
26+
print(threeNumberSum([1], 10))
27+
print(threeNumberSum([1, 2, 3, 7, 0], 10))
File renamed without changes.

0 commit comments

Comments
 (0)