Day03 *finally* done.
This commit is contained in:
parent
bd5d5ae901
commit
bb245b8711
12 changed files with 1002 additions and 56 deletions
14
days/day03/src/main.rs
Normal file
14
days/day03/src/main.rs
Normal 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));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue