Add solution for "Day 19: Linen Layout", part 2

This commit is contained in:
2025-06-02 22:20:15 +02:00
parent 12fdc184cf
commit 2afa527a85
5 changed files with 47 additions and 27 deletions

View File

@@ -346,11 +346,11 @@ TEST_CASE("[LinenLayoutTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<LinenLayout>(), 272, 0, test.getInputPaths());
test.run(std::make_unique<LinenLayout>(), 272, 1041529704688380, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<LinenLayout>(), 6, 0, test.getExampleInputPaths());
test.run(std::make_unique<LinenLayout>(), 6, 16, test.getExampleInputPaths());
}
}