Repo containing over engineered solutions to Advent of Code 2023 in Rust, the aim of which is to broaden my understanding of multi-threaded and fast Rust practices.
Make sure to install Rust and Cargo
Clone the project
git clone https://github.com/AaronvDiepen/Advent-of-Code-2023
After navigating to a day[X] and part[Y]
cd day${X}/part${Y}
The code can be run using
cargo run
Or optimally the binary can be build using
cargo build --release
After which the solutions can be ran using
target/release/day${X}-part${Y}
As examples my personal input files that Advent of Code generated for me are contained in the repo so these can be used as examples.