This repository centralizes all my LeetCode exercises. It is organized by difficulty levels and problem types. Each problem folder contains the problem statement, the solution, and an explanation.
The repository is structured as follows:
LeetCode-Exercises/
├── Easy/
│ ├── problem1/
│ │ ├── solution.py
│ │ └── README.md
│ └── problemN/
│ ├── solution.py
│ └── README.md
├── Medium/
│ ├── problem1/
│ │ ├── solution.py
│ │ └── README.md
│ └── problemN/
│ ├── solution.py
│ └── README.md
└── Hard/
├── problem1/
│ ├── solution.py
│ └── README.md
└── problemN/
├── solution.py
└── README.md
- Navigate to the folder of the desired difficulty level (
Easy,Medium, orHard). - Find the problem you want to review or work on.
- Open the problem folder to find the solution file (
solution.py) and the problem explanation (README.md).
If you want to contribute to this repository, please fork the repository, create a new branch, make your changes, and submit a pull request. Contributions are welcome!