Day 21, part 2

This commit is contained in:
jazzpi
2022-12-21 18:45:28 +01:00
parent ec5b46d793
commit 47cb2fefa5
3 changed files with 92 additions and 17 deletions

View File

@ -3,5 +3,5 @@ use aoc22::{day21, util};
pub fn main() {
let monkeys = day21::parse_monkeys(&util::parse_input());
println!("root yells: {}", day21::yell(monkeys.root()));
println!("root yells: {}", day21::yell(monkeys.root(), false));
}