Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 633 Bytes

File metadata and controls

34 lines (23 loc) · 633 Bytes

Advent of Code

This repo holds my solutions for Advent of Code

Setup

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.txt

How to use?

Run for today:

. .env/bin/activate
python3 src/aoc.py

Run for a given day (e.g. day 1 of 2024):

. .env/bin/activate
python3 src/aoc.py 2024 1

License

The code is available as open source under the terms of the MIT License.