Add solution for "Day 14: Restroom Redoubt", part 2

This commit is contained in:
2025-02-25 20:16:03 +01:00
parent a75535bab7
commit 8d75bdfbef
8 changed files with 128 additions and 7 deletions

View File

@@ -226,11 +226,11 @@ TEST_CASE("[RestroomRedoubtTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<RestroomRedoubt>(), 224969976, 0, test.getInputPaths());
test.run(std::make_unique<RestroomRedoubt>(), 224969976, 7892, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<RestroomRedoubt>(11, 7), 12, 0, test.getExampleInputPaths());
test.run(std::make_unique<RestroomRedoubt>(11, 7, false), 12, 0, test.getExampleInputPaths());
}
}