Day 16, extreme parsing edition

This commit is contained in:
2021-12-16 09:23:08 -06:00
parent eeed2bbdd3
commit 542df5bd8c
4 changed files with 171 additions and 1 deletions

View File

@ -33,7 +33,8 @@ else
"12" => new Day12(),
"13" => new Day13(),
"14" => new Day14(),
_ => new Day15(),
"15" => new Day15(),
_ => new Day16(),
};
day.Go();
}