Solutions for Everybody Codes - a coding puzzle competition.
Currently includes:
- Python
cd python
python -m venv .venv
source .venv/bin/activate # On macOS/Linux, or `.venv\Scripts\activate` on Windows
pip install -r requirements.txt
pip install pytest # For running testscd python
pytest # Run all tests
pytest tests/test_dayXX.py # Run specific day's tests
pytest -v # Verbose outputeverybody.codes/
├── python/ # Python solutions
│ ├── dayXX_Y.py # Solution files (XX = day number, Y = part number)
│ ├── tests/ # pytest test files
│ └── .venv/ # Python virtual environment
└── data/ # Shared input data and examples
└── dayXX_*.txt # Example and actual puzzle inputs