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

https://github.com/lancelote/leetcode

My solution for Leetcode exercises
https://github.com/lancelote/leetcode

Last synced: 3 months ago
JSON representation

My solution for Leetcode exercises

Awesome Lists containing this project

README

        

# leetcode

[My leetcode](https://leetcode.com/pkarateev/) exercise solutions

## Development Setup

```sh
git clone https://github.com/lancelote/leetcode.git
cd leetcode
python3 -mvenv .venv
. .venv/bin/activate
pip install -r requirements.txt
```

## Tests

```sh
. .venv/bin/activate
python -mpytest
```