Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```