Add solution for "Day 24: Crossed Wires", part 1

This commit is contained in:
2025-06-26 20:41:18 +02:00
parent 958adde4a2
commit 4788a1b5ab
8 changed files with 309 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ class TestContext
const std::string& expected2);
void runExamplePart1(std::unique_ptr<Solver<int64_t, int64_t>>&& solver, const int64_t expected);
void runExamplePart1(std::unique_ptr<Solver<std::string, int64_t>>&& solver, const std::string& expected);
void runExamplePart1(std::unique_ptr<Solver<int64_t, std::string>>&& solver, const int64_t expected);
void runExamplePart2(std::unique_ptr<Solver<int64_t, int64_t>>&& solver, const int64_t expected);
private:
template <typename T1, typename T2>