Add solution for "Day 9: Disk Fragmenter", part 2

This commit is contained in:
2025-02-14 11:24:31 +01:00
parent 648f6d4ebc
commit d8ae103928
5 changed files with 166 additions and 17 deletions

View File

@@ -140,11 +140,11 @@ TEST_CASE("[DiskFragmenterTests]")
TestContext test;
SECTION("FullData")
{
test.run(std::make_unique<DiskFragmenter>(), 6401092019345, 0, test.getInputPaths());
test.run(std::make_unique<DiskFragmenter>(), 6401092019345, 6431472344710, test.getInputPaths());
}
SECTION("ExampleData")
{
test.run(std::make_unique<DiskFragmenter>(), 1928, 0, test.getExampleInputPaths());
test.run(std::make_unique<DiskFragmenter>(), 1928, 2858, test.getExampleInputPaths());
}
}