Focused implementations of core algorithms and data structures with concise engineering notes.
Build a compact, credible reference repository for algorithmic patterns that matter in real engineering work: indexing, traversal, ordering, caching, and efficient data access.
- Complements
foundrywith more direct implementations - Supports
atlasandmeshwith reusable primitives - Provides interview-grade and production-grade examples without noise
Starter implementation phase with tested examples and a path toward broader coverage.
- Python 3.12
pytest- Markdown
kernel/
├── docs/
│ └── patterns.md
├── src/
│ └── algorithms/
│ ├── __init__.py
│ └── top_k.py
├── tests/
│ └── test_top_k.py
├── .editorconfig
├── .gitignore
├── README.md
└── ROADMAP.md
python3 -m venv .venv
source .venv/bin/activate
pip install pytest
pytestfoundrycraftmesh
Add heaps, graphs, tries, interval patterns, and benchmark-backed comparisons where they add real value.