ZH1995 / leetcode

This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Leetcode

This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.

Structure

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

Content

About

This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.


Languages

Language:C++ 84.4%Language:Python 15.6%