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/)| Use a hash table |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0001_two_sum.py)|
7
+
| 1 |[Two Sum](https://leetcode.com/problems/two-sum/)| Use a hash table |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0001_two_sum.py)||
8
8
9
-
| 56 |[Merge Intervals](https://leetcode.com/problems/merge-intervals/)| Use a stack |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0056_merge_intervals.py)|
9
+
| 56 |[Merge Intervals](https://leetcode.com/problems/merge-intervals/)| Use a stack |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0056_merge_intervals.py)||
10
10
11
-
| 66 |[Plus One](https://leetcode.com/problems/plus-one/)| Try iterating through each digit backwards. What do you do when the digit is a 9? |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0066_plus_one.py)|
11
+
| 66 |[Plus One](https://leetcode.com/problems/plus-one/)| Try iterating through each digit backwards. What do you do when the digit is a 9? |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0066_plus_one.py)||
12
12
13
-
| 88 |[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/)| Look at one element from each of the arrays, compare them, and make a decision depending on their relation to each other. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0088_merge_sorted_arrays.py)|
13
+
| 88 |[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/)| Look at one element from each of the arrays, compare them, and make a decision depending on their relation to each other. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0088_merge_sorted_arrays.py)||
14
14
15
-
| 122 |[Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/solution/)| What should we do every time there is a valley followed by a peak in price? |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0122_best_time_to_buy_and_sell_stock_II.py)|
15
+
| 122 |[Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/solution/)| What should we do every time there is a valley followed by a peak in price? |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0122_best_time_to_buy_and_sell_stock_II.py)||
16
16
17
-
| 217 |[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/)| Maintain a hash set that keeps track of the numbers we've encountered so far. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0217_contains_duplicate.py)|
17
+
| 217 |[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/)| Maintain a hash set that keeps track of the numbers we've encountered so far. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0217_contains_duplicate.py)||
18
18
19
-
| 344 |[Reverse String](https://leetcode.com/problems/reverse-string)| Use the two pointer approach. Try implementing an iterative and recursive solution. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0344_reverse_string.py)|
19
+
| 344 |[Reverse String](https://leetcode.com/problems/reverse-string)| Use the two pointer approach. Try implementing an iterative and recursive solution. |[Python Solution](https://github.com/codethecoffee/leetcode-solutions/blob/master/python_solutions/0344_reverse_string.py)||
0 commit comments