Solving Leet Code Problems :
https://leetcode.com/study-plan/algorithm/
https://leetcode.com/study-plan/data-structure/
Problems:
| # | Problem | Difficulty | Topics | My Solution |
|---|---|---|---|---|
| 1 | Two Sum | Easy | Array, Hash Map | C++ Solution |
| 7 | Reverse Integer | Medium | Math | C++ Solution |
| 11 | Container With Most Water | Medium | Two Pointers, Array | C++ Solution |
| 15 | 3Sum | Medium | Two Pointers, Array, Sorting | C++ Solution |
| 53 | Maximum Subarray | Medium | Kadane's Algorithm, Array, DP | C++ Solution |
| 61 | Rotate List | Medium | Two Pointers, Linked List | C++ Solution |
| 121 | Best Time to Buy and Sell Stock | Easy | Greedy, DP, Kadane's Algorithm | C++ Solution |
| 238 | Product of Array Except Self | Medium | Prefix Sum, Array | C++ Solution |
| 292 | Nim Game | Medium | Math, Brainteaser, Game Theory | C++ Solution |
| 1897 | Redistribute Characters to Make All Strings Equal | Easy | Hash Map, String, Counting | C++ Solution |
| 3828 | Final Element After Subarray Deletions | Medium | Array, Math, Brainteaser | C++ Solution |