Day 21, part 2
This commit is contained in:
9
src/bin/d21p2.rs
Normal file
9
src/bin/d21p2.rs
Normal file
@ -0,0 +1,9 @@
|
||||
use aoc22::{day21, util};
|
||||
|
||||
pub fn main() {
|
||||
let monkeys = day21::parse_monkeys(&util::parse_input());
|
||||
|
||||
let human = day21::find(&monkeys, "humn").unwrap();
|
||||
|
||||
println!("Human should yell: {}", day21::find_solution(human));
|
||||
}
|
||||
Reference in New Issue
Block a user