My structured DSA journey β from fundamentals to cracking product companies. Language: Python | Goal: FAANG/MAANG
| # | Problem | Difficulty | Pattern | Status |
|---|---|---|---|---|
| 1 | Find max and min | Easy | Single loop | β |
| 2 | Reverse an array | Easy | Two pointers | β |
| 3 | Check if Array is Sorted | Easy | Array Traversal, Adjacent Comparison | β |
| 4 | Remove Duplicates from Sorted Array | Easy | Two Pointers, In-place Update | β |