https://github.com/isur/python-algorithms
Some basic algorithms and structures in python.
https://github.com/isur/python-algorithms
Last synced: about 1 year ago
JSON representation
Some basic algorithms and structures in python.
- Host: GitHub
- URL: https://github.com/isur/python-algorithms
- Owner: Isur
- Archived: true
- Created: 2020-03-02T21:09:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T02:09:13.000Z (about 4 years ago)
- Last Synced: 2025-03-03T00:23:41.211Z (over 1 year ago)
- Language: Python
- Size: 2.36 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create virtual environment
Linux: `python3 -m venv venv`
Windows: `py -m venv venv`
# Activate virtual environment
Linux: `source ./venv/bin/activate`
Windows: `.\venv\Scripts\activate`
# Install packages
`pip install -r requirements.txt`
# Save packages
`pip freeze > requirements.txt`