My solutions to the Advent of Code challenges
python3 -m venv venv
venv/bin/pip install -r requirements.txt
Add your AoC session cookie to .token.
Scaffold a new solution and fetch input:
venv/bin/python prep.py <year> <day> <py|clj|none>
Run a solution:
python src/advent_of_code/y2024/day07.py
Run all solutions for a year:
python all.py 2024