Add solution for "Day 16: Reindeer Maze", part 2

This commit is contained in:
2025-05-14 21:16:14 +02:00
parent 897bab12bf
commit 26dfb379a2
4 changed files with 139 additions and 22 deletions

View File

@@ -258,15 +258,15 @@ TEST_CASE("[ReindeerMazeTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<ReindeerMaze>(), 72400, 0, test.getInputPaths());
test.run(std::make_unique<ReindeerMaze>(), 72400, 435, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<ReindeerMaze>(), 7036, 0, test.getExampleInputPaths());
test.run(std::make_unique<ReindeerMaze>(), 7036, 45, test.getExampleInputPaths());
}
SECTION("ExampleData2")
{
test.run(std::make_unique<ReindeerMaze>(2), 11048, 0, test.getExampleInputPaths());
test.run(std::make_unique<ReindeerMaze>(2), 11048, 64, test.getExampleInputPaths());
}
}