https://github.com/nkcoder/leetcode-python
My LeetCode data structure and algorithm practice in Python.
https://github.com/nkcoder/leetcode-python
algorithms data-structures leetcode python3
Last synced: 4 months ago
JSON representation
My LeetCode data structure and algorithm practice in Python.
- Host: GitHub
- URL: https://github.com/nkcoder/leetcode-python
- Owner: nkcoder
- License: mit
- Created: 2024-10-25T10:53:45.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-22T20:56:11.000Z (6 months ago)
- Last Synced: 2025-01-22T21:31:42.244Z (6 months ago)
- Topics: algorithms, data-structures, leetcode, python3
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This project contains my LeetCode practice implemented in Python.
This is the same project as [wineglassbay](https://github.com/nkcoder/wineglassbay) but with a different language.
## Prepare the env
```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip3 install -U pytest
```## Run the tests
```bash
auto/test.sh
```