A collection of my LeetCode problem solutions in various programming languages.
| # | Problem | Difficulty | Solution(s) |
|---|---|---|---|
| 1 | Two Sum | Easy | JavaScript |
| 14 | Longest Common Prefix | Easy | JavaScript |
| 26 | Remove Duplicates from Sorted Array | Easy | JavaScript |
| 27 | Remove Element | Easy | JavaScript |
| 35 | Search Insert Position | Easy | JavaScript |
| 66 | Plus One | Easy | JavaScript |
| 88 | Merge Sorted Array | Easy | JavaScript |
| 605 | Can Place Flowers | Easy | JavaScript |
| 1909 | Remove One Element to Make the Array Strictly Increasing | Easy | JavaScript |
leetcode-solutions/
├── js/ # JavaScript solutions
├── python/ # Python solutions
├── java/ # Java solutions
└── ...
Each solution is organized in its own folder under the respective language directory. Navigate to the specific problem folder to view the implementation and any accompanying notes.
Total Problems Solved: 9
- Easy: 9
- Medium: 0
- Hard: 0