Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zh1995/algorithm
This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
https://github.com/zh1995/algorithm
algorithms leetcode
Last synced: 15 days ago
JSON representation
This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
- Host: GitHub
- URL: https://github.com/zh1995/algorithm
- Owner: ZH1995
- Created: 2023-12-30T01:10:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-06T14:04:26.000Z (8 months ago)
- Last Synced: 2025-01-20T07:16:06.484Z (15 days ago)
- Topics: algorithms, leetcode
- Language: C++
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leetcode
This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
## Structure
```sh
Leetcode-Repo/
├── README.md
├── problems/
│ ├── problem_0001/
│ │ ├── README.md # problem description
│ │ ├── description/
│ │ │ └── problem_0001.md
│ │ ├── solutions/
│ │ │ └── solution_0001.cpp
│ └── problem_0002/
│ ├── README.md
│ ├── description/
│ │ └── problem_0002.md
│ ├── solutions/
│ └── solution_0002.cpp
├── study-plan/
│ ├── leetcode75/
│ │ ├── README.md
│ │ ├── array/
│ │ │ ├── problem_001.md
│ │ │ └── solution_001.cpp
│ │ ├── linked_list/
│ │ │ ├── problem_002.md
│ │ │ └── solution_002.cpp
│ ├── hot-100/
│ ├── README.md
│ ├── dynamic_programming/
│ │ ├── problem_101.md
│ │ └── solution_101.cpp
│ ├── tree/
│ ├── problem_102.md
│ └── solution_102.cpp
└── scripts/
└── generate_template.py # auto generate scripts
```## Contribute
If you have good problem-solving ideas or code implementation, you are welcome to submit a Pull Request.
## License
[MIT](LICENSE)
## Content
- [Problem 1768](./study-plan/leetcode75/string/problem_1768/README.md)
- [Problem 1071](./study-plan/leetcode75/string/problem_1071/README.md)
- [Problem 1431](./study-plan/leetcode75/array/problem_1431/README.md)
- [Problem 605](./study-plan/leetcode75/array/problem_605/README.md)
- [Problem 345](./study-plan/leetcode75/string/problem_345/README.md)
- [Problem 151](./study-plan/leetcode75/string/problem_151/README.md)
- [Problem 238](./study-plan/leetcode75/array/problem_238/README.md)
- [Problem 334](./study-plan/leetcode75/array/problem_334/README.md)
- [Problem 443](./study-plan/leetcode75/array/problem_443/README.md)
- [Problem 283](./study-plan/leetcode75/two_point/problem_283/README.md)
- [Problem 392](./study-plan/leetcode75/two_point/problem_392/README.md)
- [Problem 11](./study-plan/leetcode75/two_point/problem_11/README.md)
- [Problem 1679](./study-plan/leetcode75/two_point/problem_1679/README.md)
- [Problem 643](./study-plan/leetcode75/sliding_window/problem_643/README.md)
- [Problem 1654](./study-plan/leetcode75/sliding_window/problem_1654/README.md)
- [Problem 1004](./study-plan/leetcode75/sliding_window/problem_1004/README.md)
- [Problem 1493](./study-plan/leetcode75/sliding_window/problem_1493/README.md)
- [Problem 374](./study-plan/leetcode75/binary_search/problem_374/README.md)
- [Problem 2300](./study-plan/leetcode75/binary_search/problem_2300/README.md)