https://github.com/yodkwtf/leetcode-problems
This repository contains solutions to various LeetCode problems in multiple programming languages.
https://github.com/yodkwtf/leetcode-problems
data-structures-and-algorithms dsa leetcode
Last synced: 4 months ago
JSON representation
This repository contains solutions to various LeetCode problems in multiple programming languages.
- Host: GitHub
- URL: https://github.com/yodkwtf/leetcode-problems
- Owner: yodkwtf
- Created: 2022-08-01T13:15:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T17:39:47.000Z (over 1 year ago)
- Last Synced: 2025-05-18T15:13:29.428Z (5 months ago)
- Topics: data-structures-and-algorithms, dsa, leetcode
- Language: JavaScript
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Problem Solutions
This repository contains solutions to various LeetCode problems, with each problem being contained in its own folder. The folder contains the problem statement and the solution(s) to the problem in a programming language of choice. Additionally, a README file is included in each folder with the following information:
- Problem statement and constraints
- Explanation of the approach used to solve the problem
- Time and space complexity of the solution## Structure of the Repository
Each LeetCode problem is contained in its own folder, with the folder name being the LeetCode problem number and title. The folder structure is as follows:
```sh
LeetCode Problem Number and Title/
├── NOTES.md
├── solution.ext
└── README.md
```- `NOTES.md` - contains an explanation of the approach used to solve the problem and the time and space complexity of the solution
- `solution.ext` - contains the solution to the problem in a programming language of choice (e.g. `solution.py`, `solution.java`, `solution.js`)
- `README.md` - contains the problem statement and constraints