Add solution for "Day 13: Claw Contraption", part 2

This commit is contained in:
2025-02-18 16:11:29 +01:00
parent e6a132521b
commit 973f62163d
4 changed files with 25 additions and 9 deletions

View File

@@ -212,11 +212,11 @@ TEST_CASE("[ClawContraptionTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<ClawContraption>(), 36571, 0, test.getInputPaths());
test.run(std::make_unique<ClawContraption>(), 36571, 85527711500010, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<ClawContraption>(), 480, 0, test.getExampleInputPaths());
test.run(std::make_unique<ClawContraption>(), 480, 875318608908, test.getExampleInputPaths());
}
}