Problems from Advent of Code 2018, written in Rust.
To prepare a subproject for each new day:
./new-day.sh <DayNumber>
For example: ./new-day.sh 12
initializes all files in a directory named day-12
.
And then add the new day-NN
directory to the workspace.members
array in Cargo.toml.
To build and run the code for any of the days:
./run-day.sh <DayNumber>
Of course, rustc
and cargo
must be installed; if they are not, check the Install Rust page.