File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
# codingProblems
1+
# Coding Problems
2+
3+
Solve Coding Interview Problems using Swift
4+
5+
Ready for First Question?
6+
Solve it & raise a Pull Request.
7+
8+
9+
---
10+
11+
#1 This problem was asked by Google.
12+
13+
Given a list of numbers and a number k, return whether any two numbers from the list add up to k.
14+
15+
For example, given [10, 15, 3, 7] and k of 17, return true since 10 + 7 is 17.
16+
17+
Bonus: Can you do this in one pass?
18+
19+
---

0 commit comments

Comments
 (0)