You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 1 |[Two Sum](https://leetcode.com/problems/two-sum/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/1_Two_Sum.py)| 1. hash 2. Sort and search with two point|
7
-
| 15 |[3Sum](https://leetcode.com/problems/3sum/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/15_3Sum.py)| 1. Sort and O(n) search with three points 2. Multiple Two Sum (Problem 1) |
7
+
| 1 |[Two Sum](https://leetcode.com/problems/two-sum/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/1_Two_Sum.py)| 1. hash 2. Sort and search with two points|
8
+
| 15 |[3Sum](https://leetcode.com/problems/3sum/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/15_3Sum.py)| 1. Sort and O(n^2) search with three points 2. Multiple Two Sum (Problem 1) |
9
+
| 16 |[3Sum Closest](https://leetcode.com/problems/3sum-closest/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/16_3Sum_Closest.py)| Sort and Multiple Two Sum check abs|
10
+
| 18 |[4Sum](https://leetcode.com/problems/4sum/)|[Python](https://github.com/qiyuangong/leetcode/blob/master/python/18_4Sum.py)| The same as 3Sum, but we can merge pairs with the same sum |
0 commit comments