My solutions for this year Advent of Code challenges written in Rust.
Each day of challenge is inside the folder challenges and the inputs
provided for me by the AoC site for each day is inside the folder input.
Running the project will consume the inputs from the input folder.
Running the tests will consume the strings in each test, those strings
are the examples provided in the AoC challenge.
Firstly clone the project:
> git clone https://github.com/hmathsan/advent-of-code-2023.git
> cd advent-of-code-2023Having Rust and Cargo installed run using the command:
> cargo runAnd the tests:
> cargo test