The exercises from Advent of Code 2021 solved in Python. Fun.
Requires Python 3.9
There is one file for each day (day_one.py
, day_two.py
, etc...) with its corresponding unit test (test_day_one.py
, test_day_two.py
, etc...).
To run the project, execute its unit tests using python3 -m unittest
from the repo root.
The project has no dependencies except for development tools like coverage.py
and mypy
.
I manage my virtual env with Pipenv, if you have Pipenv installed just run pipenv install
from the repo root to get the tools.