diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 17:39:30 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 17:39:30 +0800 |
commit | 0b9455faebaf32549f0524a93d24bcadb06dfc24 (patch) | |
tree | 95c5da86830b3d9a54f38a84b41b324d24fb68fe /test/test_2022.cpp | |
parent | 216aab22ad4fa72b37530d1e380bf3c5e179dc73 (diff) | |
download | advent-of-code-0b9455faebaf32549f0524a93d24bcadb06dfc24.tar.gz advent-of-code-0b9455faebaf32549f0524a93d24bcadb06dfc24.zip |
2022 day14 part1
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index cc97269..0ba594d 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -110,8 +110,9 @@ TEST_CASE("Distress Signal", "[2022]") { } TEST_CASE("Regolith Reservoir", "[2022]") { - line_view lv = load_file("../src/2022/day14/input"); + line_view lv = load_file("../src/2022/day14/input0"); auto p = aoc2022::day14(lv); - REQUIRE(0 == p.first); + // REQUIRE(1133 == p.first); + REQUIRE(24 == p.first); REQUIRE(0 == p.second); } |