Add solution for "Day 21: Keypad Conundrum", part 2

This commit is contained in:
2025-06-09 18:28:16 +02:00
parent ab26563e34
commit 83c66682ef
7 changed files with 156 additions and 31 deletions

View File

@@ -375,11 +375,11 @@ TEST_CASE("[KeypadConundrumTests]")
TestContext test;
SECTION("FullData")
{
test.runFull(std::make_unique<KeypadConundrum>(), 136780, 0);
test.runFull(std::make_unique<KeypadConundrum>(), 136780, 167538833832712);
}
SECTION("ExampleData")
{
test.runExample(std::make_unique<KeypadConundrum>(), 126384, 0);
test.runExamplePart1(std::make_unique<KeypadConundrum>(), 126384);
}
}