1
0
Fork 0
Find a file
2024-12-25 08:37:23 +01:00
src Solve 25 2024-12-25 08:37:23 +01:00
.gitignore Ignore input 2024-12-04 22:43:54 +01:00
Cargo.lock Solve 03 2024-12-03 07:49:46 +01:00
Cargo.toml Solve 03 2024-12-03 07:49:46 +01:00
justfile Add benchmark recipe 2024-12-09 23:13:59 +01:00
README.md Prepare AOC 2024-11-29 20:28:54 +01:00
template.rs Prepare AOC 2024-11-29 20:28:54 +01:00

Advent Of Code 2024

My solutions for Advent Of Code 2024.

Usage

This project uses just . For some commands to work a session token needs to be provided in the AOC_SESSION environment variable. The easiest way to set it is to create the file .env with AOC_SESSION=your token inside in the root of this repository. The token can be received by reading the session cookie from the AOC website.

Download the puzzle input, create a file for the current day and open it in your $EDITOR:

just begin        # Prepare the current day
just day=09 begin # Prepare day 9

Run:

just        # Runs the current day
just day=09 # Runs day 9