This repo holds my solutions for Advent of Code
To run these programs, you need to have Python 3.10.0 or newer. To setup the project, run:
python3 -m venv .env
. .env/bin/activate
python3 -m pip install -e .
python3 -m pip install -r requirements.txtRun for today:
. .env/bin/activate
python3 src/aoc.pyRun for a given day (e.g. day 1 of 2024):
. .env/bin/activate
python3 src/aoc.py 2024 1The code is available as open source under the terms of the MIT License.