diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-12 23:38:22 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-12 23:38:22 +0800 |
commit | 8579b920f5ae6bd14b795b92e8864e650e82b837 (patch) | |
tree | df463f76df4281db706357bf7dcd3749c5dfff71 /test/test_2022.cpp | |
parent | 26c6c7f4d0df674b74434e05ea4965ba7ec8080a (diff) | |
download | advent-of-code-8579b920f5ae6bd14b795b92e8864e650e82b837.tar.gz advent-of-code-8579b920f5ae6bd14b795b92e8864e650e82b837.zip |
2022 day12 part1
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index f44484d..933b003 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -93,7 +93,7 @@ TEST_CASE("Monkey in the Middle", "[2022]") { REQUIRE(27267163742 == p.second); } -TEST_CASE("", "[2022]") { +TEST_CASE("Hill Climbing Algorithm", "[2022]") { line_view lv = load_file("../src/2022/day12/input"); auto p = aoc2022::day12(lv); REQUIRE(0 == p.first); |