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

https://github.com/geektimus/python-challenges


https://github.com/geektimus/python-challenges

Last synced: 9 months ago
JSON representation

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
```