Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huangsam/leetcode
Python / Java solutions for LeetCode
https://github.com/huangsam/leetcode
algorithms interview java leetcode python solutions
Last synced: 11 days 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 (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-05T14:00:14.000Z (18 days ago)
- Last Synced: 2024-12-05T15:18:32.660Z (18 days ago)
- Topics: algorithms, interview, java, leetcode, python, solutions
- Language: Python
- Homepage:
- Size: 335 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/huangsam/leetcode/ci.yml)](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
```