Day 20 solution

I would have had this done last night, but... _unintelligible muttering about key[0] being '#' in the real input and '.' in the sample...

Day 19 is...still vexing me. Maybe I'll get back to it later.
This commit is contained in:
2021-12-20 09:09:43 -06:00
parent fd1a93fa10
commit 8a33549ad2
4 changed files with 221 additions and 1 deletions

View File

@ -36,7 +36,8 @@ else
"15" => new Day15(),
"16" => new Day16(),
"17"=> new Day17(),
_ => new Day18(),
"18" => new Day18(),
_ => new Day20(),
};
day.Go();
}