Add solution for "Day 11: Plutonian Pebbles", part 2

This commit is contained in:
2025-01-22 20:38:08 +01:00
parent eaee3bd347
commit 21279a97a6
4 changed files with 37 additions and 14 deletions

View File

@@ -124,11 +124,11 @@ TEST_CASE("[PlutonianPebblesTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<PlutonianPebbles>(), 220999, 0, test.getInputPaths());
test.run(std::make_unique<PlutonianPebbles>(), 220999, 261936432123724, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<PlutonianPebbles>(), 55312, 0, test.getExampleInputPaths());
test.run(std::make_unique<PlutonianPebbles>(), 55312, 65601038650482, test.getExampleInputPaths());
}
}