Day 21 done and dusted, not general fits the input only

This commit is contained in:
Dylan Thies
2023-12-26 05:42:50 -05:00
parent 59f7fbb0e2
commit 16718d077b
6 changed files with 273 additions and 0 deletions

12
2023/day-21/src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
#![warn(clippy::all, clippy::pedantic)]
use day_21::part1;
use day_21::part2;
fn main() {
let input = include_str!("./input.txt");
let part1_result = part1(input, 64);
println!("part 1: {part1_result}");
let part2_result = part2(input, 26_501_365);
println!("part 2: {part2_result}");
}