Python 3.9+ Poetry (for dependency management) Docker (optional, for containerized deployment) app/ ├── main.py # FastAPI application entry point ├── api/routes/ # REST API endpoints ├── core/ # ...
├── problems/ # Problem solutions organized by name │ ├── two_sum/ # Individual problem directories │ │ ├── config.yml # Problem metadata and configuration │ │ ├── two_sum.py # Python solution │ │ ├── ...