This repository contains my personal solutions to the Advent Of Code challenges.
Use:
- UV: Python package manager
- Advent of code data: Python tool to fetch data from AoC website
- Copier: Tool to generate project template
Create template fast ! (By default on the current date) You have to add your session ID in env
make create
make create YEAR=2025 DAY=01
Run a script ! (By default on the current date)
make run
make run YEAR=2025 DAY=01
If an error appear try to use LEGACY param to run an old solution (not yet migrated)
make run YEAR=2025 DAY=1 LEGACY=1
Submit your answer like this:
make submit ANSWER=xxxx
make submit YEAR=2025 DAY=01 ANSWER=xxxx