https://github.com/geektimus/python-challenges
https://github.com/geektimus/python-challenges
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geektimus/python-challenges
- Owner: geektimus
- Created: 2025-03-06T18:31:08.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-03-07T15:58:38.000Z (10 months ago)
- Last Synced: 2025-03-07T16:38:14.083Z (10 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Challenges
A collection of Python programming challenges and utilities.
## Project Structure
- `src/challenges/`: Algorithm implementations
- `src/utils/`: Utility functions and classes
- `tests/`: Test suite using pytest
## Development
### Setup
```bash
pip install -e ".[dev]"
```
### Run Tests
```bash
pytest
```
### Format Code
```bash
black src tests
isort src tests
```