diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-02-10 16:55:27 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-02-10 16:55:27 +0800 |
commit | 43449739d8209d7d2b0df55722e3f5143640fd3b (patch) | |
tree | 578217deafb1a84cda58a22ae10697515c8c8a93 /test | |
parent | 46169a9af36bf31514ed3a12f11b2a9ca81ad84a (diff) | |
download | advent-of-code-43449739d8209d7d2b0df55722e3f5143640fd3b.tar.gz advent-of-code-43449739d8209d7d2b0df55722e3f5143640fd3b.zip |
2017 day18
Diffstat (limited to 'test')
-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 6181679..5b3a58e 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -173,15 +173,15 @@ TEST_CASE("Permutation Promenade", "[2017]") { TEST_CASE("Spinlock", "[2017]") { line_view lv = load_file("../src/2017/day17/input"); auto p = aoc2017::day17(lv); - // REQUIRE(808 == p.first); + REQUIRE(808 == p.first); REQUIRE(0 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Duet", "[2017]") { line_view lv = load_file("../src/2017/day18/input"); auto p = aoc2017::day18(lv); - REQUIRE(0 == p.first); + REQUIRE(3423 == p.first); REQUIRE(0 == p.second); } |