1
0
Fork 0
Find a file
2023-12-19 23:53:54 +01:00
input Rewrite day 12 part 1 2023-12-19 17:31:58 +01:00
src Solve day 12 part 2 2023-12-19 23:53:54 +01:00
.gitignore Solve day 3 2023-12-03 11:34:59 +01:00
Cargo.lock Solve day 12 part 2 2023-12-19 23:53:54 +01:00
Cargo.toml Solve day 12 part 2 2023-12-19 23:53:54 +01:00
justfile Improve template 2023-12-11 12:57:54 +01:00
README.md Solve day 1 2023-12-01 11:50:28 +01:00
template.rs Improve template 2023-12-11 12:57:54 +01:00

Advent Of Code 2023

My solutions for Advent Of Code 2023.

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 RustRover:

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