My solutions to Advent of Code 2023.
You will need poetry
installed on your system. Run:
python -m venv .venv
source .venv/bin/activate
poetry install
To run all test:
pytest
Run tests for a specific day challenge with:
pytest aoc/day[n]/
Where n
is a number for a specific day.
For linting use:
pylint .