This repository contains my solutions to problems on LeetCode. Each problem solution contains detailed problem-solving ideas and code implementation.
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
If you have good problem-solving ideas or code implementation, you are welcome to submit a Pull Request.