diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-02-09 17:01:36 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-02-09 17:01:36 +0800 |
commit | d496215180f2e8999997c421507fb643fbff876e (patch) | |
tree | 0dc36fed97b5dbbd9f3d903403a4cd284bb07d96 /test/test_2017.cpp | |
parent | 6e66e948fd41ad01ec853ee297add1e7fe554298 (diff) | |
download | advent-of-code-d496215180f2e8999997c421507fb643fbff876e.tar.gz advent-of-code-d496215180f2e8999997c421507fb643fbff876e.zip |
2017 day16
Diffstat (limited to 'test/test_2017.cpp')
-rw-r--r-- | test/test_2017.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index 32e4ffd..2fe5b3b 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -157,12 +157,12 @@ TEST_CASE("Disk Defragmentation", "[2017]") { TEST_CASE("Dueling Generators", "[2017]") { line_view lv = load_file("../src/2017/day15/input"); auto p = aoc2017::day15(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(631 == p.first); + REQUIRE(279 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Permutation Promenade", "[2017]") { line_view lv = load_file("../src/2017/day16/input"); auto p = aoc2017::day16(lv); REQUIRE(0 == p.first); |