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, C# |
| 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 |
| 2627 | Debounce | Medium | JavaScript |
| 3110 | Score of a String | 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: 11
- Easy: 10
- Medium: 1
- Hard: 0