day07
This commit is contained in:
parent
d4f4b22973
commit
5a94ee9c33
7 changed files with 2296 additions and 0 deletions
14
days/day07/src/main.rs
Normal file
14
days/day07/src/main.rs
Normal 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));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue