Day03 *finally* done.

This commit is contained in:
Gabe Venberg 2023-12-15 16:32:29 -06:00
parent bd5d5ae901
commit bb245b8711
12 changed files with 1002 additions and 56 deletions

14
days/day03/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 structured_input = parse::parse(input);
println!("Part One");
println!("Result: {}", part1::part1(&structured_input));
println!("Part Two");
println!("Result: {}", part2::part2(&structured_input));
}