Add solution for "Day 18: RAM Run", part 2

This commit is contained in:
2025-05-25 21:15:11 +02:00
parent bb1dab33e9
commit f8f431b61a
7 changed files with 113 additions and 27 deletions

View File

@@ -332,11 +332,11 @@ TEST_CASE("[RamRunTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<RamRun>(), 248, "", test.getInputPaths());
test.run(std::make_unique<RamRun>(), 248, "32,55", test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<RamRun>(7, 12), 22, "", test.getExampleInputPaths());
test.run(std::make_unique<RamRun>(7, 12), 22, "6,1", test.getExampleInputPaths());
}
}