Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 808 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 808 Bytes

🎄 Advent of Code 2023 🦀

My solutions to the edition of the year 2023 of Advent of Code calendar of programming puzzles. My approach is pretty casual, I just want to get used to Rust and learn stuff.

How to Use

Feel free to run this code by yourself. Inputs goes on the input folder (be sure their names ends in .txt). Given you have Rust Tools installed and set up, just run the following command to run all days in sequence

cargo run --release

Or, if you rather, run specfic days by replacing the XX on the following command

cargo run --bin XX --release

Fetch

The way I automated fetching inputs and prompts is by using my simple AOCFetcher