Solving the Advent of Code problems in the programming language Rust.
cargo new day[NUM] --bin --vcs none
cargo run
cargo test
- Put the input data into the "i" file
- Put the test data into the "t1" file
- Change the assert in the test in star1.rs to the expected result of t1
- Implement the solution in the star1 function in star1.rs
- do 2-4 for star2