Add solution for "Day 6: Guard Gallivant", part 2

This commit is contained in:
2025-03-19 09:56:50 +01:00
parent 51b537098d
commit e0cd315909
6 changed files with 178 additions and 37 deletions

View File

@@ -107,11 +107,11 @@ TEST_CASE("[GuardGallivantTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<GuardGallivant>(), 4665, 0, test.getInputPaths());
test.run(std::make_unique<GuardGallivant>(), 4665, 1688, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<GuardGallivant>(), 41, 0, test.getExampleInputPaths());
test.run(std::make_unique<GuardGallivant>(), 41, 6, test.getExampleInputPaths());
}
}