diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-21 13:39:26 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-21 13:39:26 +0800 |
commit | 17bbbec555e83354c16f975bd4d7ec50bb967896 (patch) | |
tree | b5f4be00a0ad03d5fe02f2ac43c2488d4e7c57ff /test | |
parent | 546b50d29ea292f330061e7ac007535d5e949798 (diff) | |
download | advent-of-code-17bbbec555e83354c16f975bd4d7ec50bb967896.tar.gz advent-of-code-17bbbec555e83354c16f975bd4d7ec50bb967896.zip |
2016 day13
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2016.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_2016.cpp b/test/test_2016.cpp index b253f94..82d272a 100644 --- a/test/test_2016.cpp +++ b/test/test_2016.cpp @@ -122,11 +122,11 @@ TEST_CASE("Leonardo's Monorail", "[2016]") { } -TEST_CASE("", "[2016]") { +TEST_CASE("A Maze of Twisty Little Cubicles", "[2016]") { line_view lv = load_file("../src/2016/day13/input"); auto p = aoc2016::day13(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(90 == p.first); + REQUIRE(135 == p.second); } |