Skip to content

Commit

Permalink
Merge pull request #1 from jobearrr/feature/problems_list
Browse files Browse the repository at this point in the history
πŸ“ Update README.md
  • Loading branch information
jobearrr authored Aug 18, 2024
2 parents 28bc64d + 2bf3e0f commit 9bd469d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ You can find the walkthrough with detailed solutions to all the problems on my b
| 16 | [3Sum Closest][016] | **`A`** **`TP`** **`SO`** | ![Difficulty][medium-shield] |
| 17 | [Letter Combinations of a Phone Number][017] | **`HT`** **`S`** **`BT`** | ![Difficulty][medium-shield] |
| 18 | [4Sum][018] | **`A`** **`TP`** **`SO`** | ![Difficulty][medium-shield] |
| 19 | [Remove Nth Node From End of List][019] | **`LL`** **`TP`** | ![Difficulty][medium-shield] |
| 20 | [Valid Parentheses][020] | **`S`** **`ST`** | ![Difficulty][easy-shield] |

### Topics
- **`A`** : Array
Expand All @@ -103,6 +105,7 @@ You can find the walkthrough with detailed solutions to all the problems on my b
- **`T`**: Trie
- **`SO`**: Sorting
- **`BT`**: Backtracking
- **`ST`**: Stack

## TDD Approach
Here, I use the *TDD* approach, writing the test cases before writing the solution. This way, I can quickly verify if the solution works as expected.
Expand Down Expand Up @@ -162,3 +165,5 @@ Please acknowledge [the license](https://github.com/jobearrr/LeetSwift/blob/main
[016]: https://leetcode.com/problems/3sum-closest
[017]: https://leetcode.com/problems/letter-combinations-of-a-phone-number
[018]: https://leetcode.com/problems/4sum
[019]: https://leetcode.com/problems/remove-nth-node-from-end-of-list
[020]: https://leetcode.com/problems/valid-parentheses

0 comments on commit 9bd469d

Please sign in to comment.