diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-06 17:45:09 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-06 17:45:09 +0800 |
commit | 5e7e2eac5d529f974f7fe65ca1d337c515d43268 (patch) | |
tree | 311e1bb6043ef7da6727c713acd2a923455e4075 /test/test_2022.cpp | |
parent | cada26566ccd0fd439f4490c4cee029148bf189b (diff) | |
download | advent-of-code-5e7e2eac5d529f974f7fe65ca1d337c515d43268.tar.gz advent-of-code-5e7e2eac5d529f974f7fe65ca1d337c515d43268.zip |
2022 day18 part2 flood
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index a5649ea..8626a4c 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -149,9 +149,9 @@ TEST_CASE("Pyroclastic Flow", "[2022]") { } TEST_CASE("Boiling Boulders", "[2022]") { - line_view lv = load_file("../src/2022/day18/input0"); + line_view lv = load_file("../src/2022/day18/input"); auto p = aoc2022::day18(lv); - REQUIRE(0 == p.first); + REQUIRE(3500 == p.first); REQUIRE(0 == p.second); } |