https://github.com/huangsam/leetcode
Python / Java solutions for LeetCode
https://github.com/huangsam/leetcode
algorithms interview java leetcode python solutions
Last synced: 3 months ago
JSON representation
Python / Java solutions for LeetCode
- Host: GitHub
- URL: https://github.com/huangsam/leetcode
- Owner: huangsam
- Created: 2017-06-30T16:25:55.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T10:38:44.000Z (4 months ago)
- Last Synced: 2025-04-12T00:43:38.122Z (3 months ago)
- Topics: algorithms, interview, java, leetcode, python, solutions
- Language: Python
- Homepage:
- Size: 382 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode
[](https://github.com/huangsam/leetcode/actions)
Python / Java solutions for [LeetCode problems](https://leetcode.com/).
🐍 🐍 🐍 - 🏃♂️ 🏃♂️ 🏃♂️ - ☕ ☕ ☕
The URL of each solution is embedded at the top of the file.
Run `bash urls.sh` to see the URLs for all attempted problems.
## Validation
For Python solutions:
```shell
virtualenv venv # setup starts here
source venv/bin/activate
pip install -r requirements.txt
ruff check python # validation starts here
mypy python
```For Java solutions:
```shell
gradle build # validation starts here
```