This repository contains my solutions to various LeetCode problems, categorized by topic.
Each solution includes explanations, optimized approaches, and test cases.
- Click on the green Code button.
- Open the active CodeSpace
- Find the desired problem and run it
# | Problem | Category | Difficulty | Explaination | Solution |
---|---|---|---|---|---|
11 | Container With Most Water | Two Pointer | 🔵 Medium | maxArea.md | maxArea.py |
12 | Integer to Roman | Arrays | 🔵 Medium | integerToRoman.md | integerToRoman.py |
13 | Roman to Integer | Arrays | 🟢 Easy | romanToInteger.md | romanToInteger.py |
42 | Trapping Rain Water | Arrays | 🔴 Hard | trappingRainWater.md | trappingRainWater.py |
68 | Text Justification | Arrays | 🔴 Hard | textJustification.md | textJustification.py |
135 | Candy | Arrays | 🔴 Hard | candy.md | candy.py |