Day 21, part 1

This commit is contained in:
jazzpi
2022-12-21 17:32:59 +01:00
parent 93f574463b
commit 9b42768fdb
3 changed files with 72 additions and 0 deletions

7
src/bin/d21p1.rs Normal file
View File

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