|
2 | 2 |
|
3 | 3 | # April Leetcoding Challenge 2021
|
4 | 4 |
|
5 |
| -Day | Name of Problem | Leetcode Link | Video Link |
6 |
| ---- | :---: | --- | --- |
7 |
| -1 | Palindrome Linked List | https://leetcode.com/problems/palindrome-linked-list/ | https://youtu.be/Ll9ZbXaXqlQ |
8 |
| -2 | Ones and Zeroes | https://leetcode.com/problems/ones-and-zeroes/ | https://youtu.be/qkUZ87NCYSw |
9 |
| -3 | Longest Valid Parentheses | https://leetcode.com/problems/longest-valid-parentheses/ | https://youtu.be/VdQuwtEd10M |
10 |
| -4 | Design Circular Queue | https://leetcode.com/problems/design-circular-queue/ | https://youtu.be/Q2YhZ6Pq0GQ |
11 |
| -5 | Global and Local Inversions | https://leetcode.com/problems/global-and-local-inversions/ | https://youtu.be/1QlP6cVLrII |
12 |
| -6 | Minimum Operations to Make Array Equal | https://leetcode.com/problems/minimum-operations-to-make-array-equal/ | https://youtu.be/9aGx9hoIBjI |
13 |
| -7 | Determine if String Halves Are Alike | https://leetcode.com/problems/determine-if-string-halves-are-alike/ | https://youtu.be/752uISt9sCs |
14 |
| -8 | Letter Combinations of a Phone Number | https://leetcode.com/problems/letter-combinations-of-a-phone-number/ | https://youtu.be/Ydur1aYALc4 |
15 |
| -9 | Verifying an Alien Dictionary | https://leetcode.com/problems/verifying-an-alien-dictionary/ | https://youtu.be/jK5a8T9q4pc |
16 |
| -10 | Deepest Leaves Sum | https://leetcode.com/problems/deepest-leaves-sum/ | https://youtu.be/kgG2LuxzAHU |
17 |
| -11 | Longest Increasing Path in a Matrix | https://leetcode.com/problems/longest-increasing-path-in-a-matrix/ | https://youtu.be/WiEqhI7v2FY |
18 |
| -12 | Beautiful Arrangement II | https://leetcode.com/problems/beautiful-arrangement-ii/ | https://youtu.be/BiQlqgmJ0BM |
19 |
| -13 | Flatten Nested List Iterator | https://leetcode.com/problems/flatten-nested-list-iterator/ | https://youtu.be/V-gPWPOyq8I |
20 |
| -14 | Partition List | https://leetcode.com/problems/partition-list/ | https://youtu.be/b4FeEwAGDtU |
| 5 | +Day | Name of Problem | Leetcode Link | Video Link | Code |
| 6 | +--- | :---: | --- | --- | --- |
| 7 | +1 | Palindrome Linked List | https://leetcode.com/problems/palindrome-linked-list/ | https://youtu.be/Ll9ZbXaXqlQ | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/234.%20Palindrome%20Linked%20List |
| 8 | +2 | Ones and Zeroes | https://leetcode.com/problems/ones-and-zeroes/ | https://youtu.be/qkUZ87NCYSw | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/474.%20Ones%20and%20Zeroes |
| 9 | +3 | Longest Valid Parentheses | https://leetcode.com/problems/longest-valid-parentheses/ | https://youtu.be/VdQuwtEd10M | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/32.%20Longest%20Valid%20Parentheses |
| 10 | +4 | Design Circular Queue | https://leetcode.com/problems/design-circular-queue/ | https://youtu.be/Q2YhZ6Pq0GQ | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/622.%20Design%20Circular%20Queue |
| 11 | +5 | Global and Local Inversions | https://leetcode.com/problems/global-and-local-inversions/ | https://youtu.be/1QlP6cVLrII | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/775.%20Global%20and%20Local%20Inversions |
| 12 | +6 | Minimum Operations to Make Array Equal | https://leetcode.com/problems/minimum-operations-to-make-array-equal/ | https://youtu.be/9aGx9hoIBjI | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/1551.%20Minimum%20Operations%20to%20Make%20Array%20Equal |
| 13 | +7 | Determine if String Halves Are Alike | https://leetcode.com/problems/determine-if-string-halves-are-alike/ | https://youtu.be/752uISt9sCs | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/1704.%20Determine%20if%20String%20Halves%20Are%20Alike |
| 14 | +8 | Letter Combinations of a Phone Number | https://leetcode.com/problems/letter-combinations-of-a-phone-number/ | https://youtu.be/Ydur1aYALc4 | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/17.%20Letter%20Combinations%20of%20a%20Phone%20Number |
| 15 | +9 | Verifying an Alien Dictionary | https://leetcode.com/problems/verifying-an-alien-dictionary/ | https://youtu.be/jK5a8T9q4pc | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/953.%20Verifying%20an%20Alien%20Dictionary |
| 16 | +10 | Deepest Leaves Sum | https://leetcode.com/problems/deepest-leaves-sum/ | https://youtu.be/kgG2LuxzAHU | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/1302.%20Deepest%20Leaves%20Sum |
| 17 | +11 | Longest Increasing Path in a Matrix | https://leetcode.com/problems/longest-increasing-path-in-a-matrix/ | https://youtu.be/WiEqhI7v2FY | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/329.%20Longest%20Increasing%20Path%20in%20a%20Matrix |
| 18 | +12 | Beautiful Arrangement II | https://leetcode.com/problems/beautiful-arrangement-ii/ | https://youtu.be/BiQlqgmJ0BM | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/667.%20Beautiful%20Arrangement%20II |
| 19 | +13 | Flatten Nested List Iterator | https://leetcode.com/problems/flatten-nested-list-iterator/ | https://youtu.be/V-gPWPOyq8I | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/341.%20Flatten%20Nested%20List%20Iterator |
| 20 | +14 | Partition List | https://leetcode.com/problems/partition-list/ | https://youtu.be/b4FeEwAGDtU | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/86.%20Partition%20List |
| 21 | +14 | Fibonacci Number | https://leetcode.com/problems/fibonacci-number/ | https://youtu.be/kIzjdvU_QIU | https://github.com/Algorithms-Made-Easy/Leetcode-Challenge/blob/main/509.%20Fibonacci%20Number |
0 commit comments