diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-03-09 14:55:06 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-03-09 14:55:06 +0800 |
commit | 53dcb09169f3e2be7712c0599b53985afc1fdfae (patch) | |
tree | 76d2cb4308f761e08374543180f70911f300b8d9 /test | |
parent | 89c52c14c90bc32565c7cff44abd7ddb1c51bce1 (diff) | |
download | advent-of-code-53dcb09169f3e2be7712c0599b53985afc1fdfae.tar.gz advent-of-code-53dcb09169f3e2be7712c0599b53985afc1fdfae.zip |
2017 day21
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2017.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index d9db869..d20ad57 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -205,8 +205,8 @@ TEST_CASE("Particle Swarm", "[2017]") { TEST_CASE("Fractal Art", "[2017]") { line_view lv = load_file("../src/2017/day21/input"); auto p = aoc2017::day21(lv); - REQUIRE(0 == p.first); - REQUIRE(0 == p.second); + REQUIRE(142 == p.first); + REQUIRE(1879071 == p.second); } |