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.
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 --releaseOr, if you rather, run specfic days by replacing the XX on the following command
cargo run --bin XX --releaseThe way I automated fetching inputs and prompts is by using my simple AOCFetcher