Welcome to my Leetcode-Problems repository! Here, you'll find my solutions to various coding problems from platforms like LeetCode, GeeksforGeeks.
In this repository, you'll find solutions to coding problems categorized by platform and difficulty level. Each problem solution is accompanied by a brief explanation of the approach used.
The repository is organized as follows:
Leetcode-Problems/ ├─ LeetCode/ ├── Easy/ ├── Medium/ ├── Hard/ └── SQL/
This repository contains solutions primarily written in Java for LeetCode problems and SQL for database-related challenges.
- Clone the repository to your local machine using
git clone https://github.com/your-username/Leetcode-Problems.git
. - Navigate to the directory of the coding challenge you're interested in.
- Open the solution file (e.g.,
.py
,.java
,.cpp
) to view the code. - Read the accompanying explanation to understand the approach used to solve the problem.
Contributions are welcome! If you'd like to contribute your own solutions or improvements to existing ones, follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/your-solution
). - Make your changes and commit them (
git commit -am 'Add your message here'
). - Push to the branch (
git push origin feature/your-solution
). - Create a new Pull Request.
Please ensure your code follows the repository's coding standards and includes appropriate documentation.