Advent of code solutions written in Rust for practice.
To run any individual days solution, use the following command:
cargo run --bin day-# <1 or 2> --- where # denotes the day for which to solve.Example command to solve day 1s problem part 2:
cargo run --bin day-1 2Make sure that the input.txt is within the same data directory under the folder of the respective day (for example: data/day-1/input1.txt for part 1s input).