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
- Host: GitHub
- URL: https://github.com/lancelote/leetcode
- Owner: lancelote
- Created: 2020-11-11T11:20:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T14:24:40.000Z (6 months ago)
- Last Synced: 2025-03-10T23:14:20.425Z (3 months ago)
- Language: Python
- Size: 695 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```