We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e466cb5 commit 723bd3bCopy full SHA for 723bd3b
find_pairs_sum_k.py
@@ -1,3 +1,6 @@
1
+# Given an array of numbers, find all the
2
+# pairs of numbers which sum upto `k`
3
+
4
def find_pairs(num_array, k):
5
pairs_array = []
6
for num in num_array:
0 commit comments