Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 656 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 656 Bytes

AOC 2023 - Rust

Downloading Data

  1. Put your AOC session token in a file called .env in the formac
AOC_SESSION="<your_session_cookie>"
  1. Download the data for a given day with ./download_day.sh <day>

Running solutions

To run a solution simply run

cargo run <day>

In order to run, for example, just part a of day 4 run

cargo run 4a

Credits

The system for running solutions is inspired by this comment from Reddit user u/thaddeus_v.