|
14 | 14 | <img alt="Leetcode">
|
15 | 15 | </picture>
|
16 | 16 |
|
| 17 | +## 🏆 Curated solutions to Leetcode problems in multiple languages to ace the Coding Interviews. |
| 18 | + |
17 | 19 | ### Press <kbd>Ctrl</kbd>+<kbd>F</kbd> or <kbd>⌘</kbd>+<kbd>F</kbd> to search for a specific problem
|
18 | 20 |
|
19 | 21 | ## Array
|
|
34 | 36 | | # | Solution | Tags | Difficulty | Remark |
|
35 | 37 | | :------: | :-----------------------------------------------------------: | :----------------------------------: | :---------: | :----: |
|
36 | 38 | | **1047** | [Remove All Adjacent Duplicates In String][1047] | String, Stack | ![][easy] | |
|
| 39 | +| **0344** | [Reverse String][344] | Two Pointers, String, Recursion | ![][easy] | | |
37 | 40 | | **1461** | [Check If a String Contains All Binary Codes of Size K][1461] | String, Hash Table, Bit Manipulation | ![][medium] | |
|
38 | 41 |
|
39 | 42 | ## Hash Table
|
|
155 | 158 | | **0004** | [Median of Two Sorted Arrays][4] | Array, Binary Search, Divide & Conquer | ![][hard] | |
|
156 | 159 | | **0075** | [Sort Colors][75] | Array, Two Pointers, Sorting | ![][medium] | |
|
157 | 160 | | **0283** | [Move Zeroes][283] | Array, Two Pointers | ![][easy] | |
|
| 161 | +| **0344** | [Reverse String][344] | Two Pointers, String, Recursion | ![][easy] | | |
158 | 162 | | **0653** | [Two Sum IV - Input is a BST ][653] | Tree, DFS, BST, Binary Tree | ![][easy] | |
|
159 | 163 | | **1537** | [Get the Maximum Score][1537] | Array, Two Pointer, Dynamic Programming, Greedy | ![][hard] | |
|
160 | 164 |
|
|
256 | 260 |
|
257 | 261 | ## Recursion
|
258 | 262 |
|
259 |
| -| # | Solution | Tags | Difficulty | Remark | |
260 |
| -| :------: | :-----------------------: | :--------------------: | :---------: | :----: | |
261 |
| -| **0024** | [Swap Nodes in Pairs][24] | Linked List, Recursion | ![][medium] | | |
| 263 | +| # | Solution | Tags | Difficulty | Remark | |
| 264 | +| :------: | :-----------------------: | :-----------------------------: | :---------: | :----: | |
| 265 | +| **0024** | [Swap Nodes in Pairs][24] | Linked List, Recursion | ![][medium] | | |
| 266 | +| **0344** | [Reverse String][344] | Two Pointers, String, Recursion | ![][easy] | | |
262 | 267 |
|
263 | 268 | <!--
|
264 | 269 | ## Trie
|
|
568 | 573 | [222]: ./src/0201-0300/222%20-%20Count%20Complete%20Tree%20Nodes/
|
569 | 574 | [230]: ./src/0201-0300/230%20-%20Kth%20Smallest%20Element%20in%20a%20BST/
|
570 | 575 | [283]: ./src/0201-0300/283%20-%20Move%20Zeroes/
|
| 576 | +[344]: ./src/0301-0400/344%20-%20Reverse%20String/ |
571 | 577 | [369]: ./src/0301-0400/369%20-%20Plus%20One%20Linked%20List/
|
572 | 578 | [543]: ./src/0501-0600/543%20-%20Diameter%20of%20Binary%20Tree/
|
573 | 579 | [653]: ./src/0601-0700/653%20-%20Two%20Sum%20IV%20-%20Input%20is%20a%20BST/
|
|
0 commit comments