Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giorgiogtelian/leetcode_problems
my leetcode problem i will add the medium to hard difficulties one
https://github.com/giorgiogtelian/leetcode_problems
leetcode leetcode-cpp leetcode-solutions problem-solving problems solution solutions
Last synced: about 7 hours ago
JSON representation
my leetcode problem i will add the medium to hard difficulties one
- Host: GitHub
- URL: https://github.com/giorgiogtelian/leetcode_problems
- Owner: giorgioGTelian
- Created: 2023-12-14T18:15:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-13T20:24:45.000Z (3 months ago)
- Last Synced: 2024-08-13T23:33:17.225Z (3 months ago)
- Topics: leetcode, leetcode-cpp, leetcode-solutions, problem-solving, problems, solution, solutions
- Language: C++
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Solutions
Welcome to my repository of LeetCode solutions! This repository contains my personal solutions to various problems on LeetCode. The primary goal of this repository is to serve as a reference and a learning tool for myself and others who are interested in improving their problem-solving skills in the field of computer science.
## Repository Structure
Each solution in this repository is organized by its difficulty level (Easy, Medium, Hard) and then by problem number. Each problem has its own directory which contains the solution code and a README file with the problem statement and my approach to solving it.
```
LeetCode_Problems/
│
├── Easy/
│ ├── Problem_1/
│ │ ├── solution.cpp
│ │ └── README.md
│ ...
│
├── Medium/
│ ├── Problem_101/
│ │ ├── solution.cpp
│ │ └── README.md
│ ...
│
└── Hard/
├── Problem_201/
│ ├── solution.cpp
│ └── README.md
...
```## Problems and Solutions
Here is a list of problems along with their solutions:
### Easy
- [Problem 1: two sums](https://leetcode.com/problems/two-sum/description/)
- ...### Medium
- [Problem 2: add two numbers](https://leetcode.com/problems/add-two-numbers/description/)
- [Problem 2482: difference between ones and zeros](https://leetcode.com/problems/difference-between-ones-and-zeros-in-row-and-column/?envType=daily-question&envId=2023-12-14)
- ...### Hard - TDB
- ...
## Usage
Each directory contains a solution file and a README. The solution file is named `solution.extension` where 'extension' is the appropriate file extension for the programming language used (e.g., `.py` for Python, `.cpp` for C++). The README file contains the problem statement and a brief explanation of my approach to solving the problem.
## Contributing
While this is a personal repository for my own learning and reference, suggestions and discussions on different approaches to these problems are always welcome. Feel free to open an issue or a pull request if you have any contributions or suggestions.
## License
This project is open-sourced under the [MIT license](LICENSE).
## Contact
If you have any questions or would like to get in touch with me, please feel free to [contact me](mailto:[email protected]).
---
Happy Coding!