diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-27 23:31:34 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-27 23:31:34 +0800 |
commit | 12a9e8f7fe9c11efc5bd24e288af19d94e3466de (patch) | |
tree | b071bde44db6354338fa287065dede6173ca7435 /test/test_2016.cpp | |
parent | 505fa24b22d0093516ed3d725bec68912e0f878a (diff) | |
download | advent-of-code-12a9e8f7fe9c11efc5bd24e288af19d94e3466de.tar.gz advent-of-code-12a9e8f7fe9c11efc5bd24e288af19d94e3466de.zip |
2016 day23 part1
Diffstat (limited to 'test/test_2016.cpp')
-rw-r--r-- | test/test_2016.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index 5fa17e7..76bf2e9 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -207,7 +207,7 @@ TEST_CASE("Grid Computing", "[2016]") { TEST_CASE("Safe Cracking", "[2016]") { line_view lv = load_file("../src/2016/day23/input"); auto p = aoc2016::day23(lv); - REQUIRE(0 == p.first); + REQUIRE(13140 == p.first); REQUIRE(0 == p.second); } |