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
| 125 |[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/)| Easy |[ts](./TypeScript/125.valid-palindrome.ts)| Two Pointers |
19
-
| 167 |[Two Sum II - Input Array Is Sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/)| Medium |[ts](./TypeScript/167.two-sum-ii-input-array-is-sorted.ts)| Two Pointers |
20
-
| 15 |[3Sum](https://leetcode.com/problems/3sum/)| Medium |[ts](./TypeScript/15.3sum.ts)| Two Pointers |
21
-
| 11 |[Container With Most Water](https://leetcode.com/problems/container-with-most-water/)| Medium |[ts](./TypeScript/11.container-with-most-water.ts)| Two Pointers |
22
-
| 42 |[Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water/)| Hard |[ts](./TypeScript/42.trapping-rain-water.ts)| Two Pointers |
| 155 |[Min Stack](https://leetcode.com/problems/min-stack/)| Medium |[ts](./TypeScript/155.min-stack.ts)| Stack |
25
-
| 150 |[Evaluate Reverse Polish Notation](https://leetcode.com/problems/evaluate-reverse-polish-notation/)| Medium |[ts](./TypeScript/150.evaluate-reverse-polish-notation.ts)| Stack |
26
-
| 22 |[Generate Parentheses](https://leetcode.com/problems/generate-parentheses/)| Medium |[ts](./TypeScript/22.generate-parentheses.ts)| Stack |
27
-
| 739 |[Daily Temperatures](https://leetcode.com/problems/daily-temperatures/)| Medium |[ts](./TypeScript/739.daily-temperatures.ts)| Stack |
28
-
| 853 |[Car Fleet](https://leetcode.com/problems/car-fleet/)| Medium |[ts](./TypeScript/853.car-fleet.ts)| Stack |
29
-
| 84 |[Largest Rectangle in Histogram](https://leetcode.com/problems/largest-rectangle-in-histogram/)| Hard |[ts](./TypeScript/84.largest-rectangle-in-histogram.ts)| Stack |
| 74 |[Search a 2D Matrix](https://leetcode.com/problems/search-a-2d-matrix/)| Medium |[ts](./TypeScript/74.search-a-2d-matrix.ts)| Binary Search |
32
-
| 875 |[Koko Eating Bananas](https://leetcode.com/problems/koko-eating-bananas/)| Medium |[ts](./TypeScript/875.koko-eating-bananas.ts)| Binary Search |
33
-
| 153 |[Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/)| Medium |[ts](./TypeScript/153.find-minimum-in-rotated-sorted-array.ts)| Binary Search |
34
-
| 33 |[Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/)| Medium |[ts](./TypeScript/33.search-in-rotated-sorted-array.ts)| Binary Search |
35
-
| 981 |[Time Based Key-Value Store](https://leetcode.com/problems/time-based-key-value-store/)| Medium |[ts](./TypeScript/981.time-based-key-value-store.ts)| Binary Search |
36
-
| 121 |[Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/)| Easy |[ts](./TypeScript/121.best-time-to-buy-and-sell-stock.ts)| Sliding Window |
37
-
| 3 |[Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/)| Medium |[ts](./TypeScript/3.longest-substring-without-repeating-characters.ts)| Sliding Window |
38
-
| 424 |[Longest Repeating Character Replacement](https://leetcode.com/problems/longest-repeating-character-replacement/)| Medium |[ts](./TypeScript/424.longest-repeating-character-replacement.ts)| Sliding Window |
39
-
| 206 |[Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/)| Easy |[ts](./TypeScript/206.reverse-linked-list.ts)[rkt](./Racket/206.reverse-linked-list.rkt)| Linked List |
40
-
| 21 |[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)| Easy |[ts](./TypeScript/21.merge-two-sorted-lists.ts)| Linked List |
| 125 |[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/)| Easy |[ts](./TypeScript/125.valid-palindrome.ts)| Two Pointers |
19
+
| 167 |[Two Sum II - Input Array Is Sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/)| Medium |[ts](./TypeScript/167.two-sum-ii-input-array-is-sorted.ts)| Two Pointers |
20
+
| 15 |[3Sum](https://leetcode.com/problems/3sum/)| Medium |[ts](./TypeScript/15.3sum.ts)| Two Pointers |
21
+
| 11 |[Container With Most Water](https://leetcode.com/problems/container-with-most-water/)| Medium |[ts](./TypeScript/11.container-with-most-water.ts)| Two Pointers |
22
+
| 42 |[Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water/)| Hard |[ts](./TypeScript/42.trapping-rain-water.ts)| Two Pointers |
| 155 |[Min Stack](https://leetcode.com/problems/min-stack/)| Medium |[ts](./TypeScript/155.min-stack.ts)| Stack |
25
+
| 150 |[Evaluate Reverse Polish Notation](https://leetcode.com/problems/evaluate-reverse-polish-notation/)| Medium |[ts](./TypeScript/150.evaluate-reverse-polish-notation.ts)| Stack |
26
+
| 22 |[Generate Parentheses](https://leetcode.com/problems/generate-parentheses/)| Medium |[ts](./TypeScript/22.generate-parentheses.ts)| Stack |
27
+
| 739 |[Daily Temperatures](https://leetcode.com/problems/daily-temperatures/)| Medium |[ts](./TypeScript/739.daily-temperatures.ts)| Stack |
28
+
| 853 |[Car Fleet](https://leetcode.com/problems/car-fleet/)| Medium |[ts](./TypeScript/853.car-fleet.ts)| Stack |
29
+
| 84 |[Largest Rectangle in Histogram](https://leetcode.com/problems/largest-rectangle-in-histogram/)| Hard |[ts](./TypeScript/84.largest-rectangle-in-histogram.ts)| Stack |
| 74 |[Search a 2D Matrix](https://leetcode.com/problems/search-a-2d-matrix/)| Medium |[ts](./TypeScript/74.search-a-2d-matrix.ts)| Binary Search |
32
+
| 875 |[Koko Eating Bananas](https://leetcode.com/problems/koko-eating-bananas/)| Medium |[ts](./TypeScript/875.koko-eating-bananas.ts)| Binary Search |
33
+
| 153 |[Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/)| Medium |[ts](./TypeScript/153.find-minimum-in-rotated-sorted-array.ts)| Binary Search |
34
+
| 33 |[Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/)| Medium |[ts](./TypeScript/33.search-in-rotated-sorted-array.ts)| Binary Search |
35
+
| 981 |[Time Based Key-Value Store](https://leetcode.com/problems/time-based-key-value-store/)| Medium |[ts](./TypeScript/981.time-based-key-value-store.ts)| Binary Search |
36
+
| 121 |[Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/)| Easy |[ts](./TypeScript/121.best-time-to-buy-and-sell-stock.ts)| Sliding Window |
37
+
| 3 |[Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/)| Medium |[ts](./TypeScript/3.longest-substring-without-repeating-characters.ts)| Sliding Window |
38
+
| 424 |[Longest Repeating Character Replacement](https://leetcode.com/problems/longest-repeating-character-replacement/)| Medium |[ts](./TypeScript/424.longest-repeating-character-replacement.ts)| Sliding Window |
39
+
| 206 |[Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/)| Easy |[ts](./TypeScript/206.reverse-linked-list.ts)[rkt](./Racket/206.reverse-linked-list.rkt)| Linked List |
40
+
| 21 |[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)| Easy |[ts](./TypeScript/21.merge-two-sorted-lists.ts)[rkt](./Racket/21.merge-two-sorted-lists.rkt)| Linked List |
0 commit comments