This commit is contained in:
Gabe Venberg 2023-12-07 14:27:16 -06:00
parent d4f4b22973
commit 5a94ee9c33
7 changed files with 2296 additions and 0 deletions

14
days/day07/src/main.rs Normal file
View file

@ -0,0 +1,14 @@
mod part1;
mod part2;
mod parse;
fn main() {
let input = include_str!("./input.txt");
let mut structured_input = parse::parse(input);
println!("Part One");
println!("Result: {}", part1::part1(&mut structured_input));
println!("Part Two");
println!("Result: {}", part2::part2(&structured_input));
}