# AGENTS.md

All Algorithms implemented in Python

## Setup

```
uv sync
```

## Commands

```
pytest         # run the test suite
ruff check .   # lint
```

## Layout

- `project_euler/`       309 source files
- `maths/`               178 source files
- `data_structures/`     130 source files
- `graphs/`              66 source files
- `strings/`             57 source files
- `dynamic_programming/` 51 source files

## Conventions

- Tests live alongside the code they cover, following `data_structures/hashing/tests/__init__.py`.
- CI defines what passing means. See `.github/workflows/build.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
