Add solution for "Day 17: Chronospatial Computer", part 2

This commit is contained in:
2025-05-21 20:34:34 +02:00
parent 5201dcf0bc
commit 45ab5f93ec
9 changed files with 104 additions and 6 deletions

View File

@@ -32,6 +32,8 @@ class TestContext
const long long expected2, const std::vector<std::string>& inputPaths);
void runPart1(const std::unique_ptr<Solver<long long, long long>>&& solver, const long long expected,
const std::vector<std::string>& inputPaths);
void runPart1(const std::unique_ptr<Solver<std::string, long long>>&& solver, const std::string expected,
const std::vector<std::string>& inputPaths);
void runPart2(const std::unique_ptr<Solver<long long, long long>>&& solver, const long long expected,
const std::vector<std::string>& inputPaths);
std::vector<std::string> getInputPaths() const;