diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-03-20 09:50:44 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-03-20 09:50:44 +0800 |
commit | 8a59303f3bc876bfa2d0db5aca548233ea15272d (patch) | |
tree | c6b5a424524b51ffac4c80e1106571f5b5f9287d /test/test_2015.cpp | |
parent | 33fc0bfa0bd56c0632e5395aec30192ddb5feb7f (diff) | |
download | advent-of-code-8a59303f3bc876bfa2d0db5aca548233ea15272d.tar.gz advent-of-code-8a59303f3bc876bfa2d0db5aca548233ea15272d.zip |
day14 part1
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r-- | test/test_2015.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp index b97b88d..3b0fb1a 100644 --- a/test/test_2015.cpp +++ b/test/test_2015.cpp @@ -160,5 +160,6 @@ TEST_CASE("Knights of the Dinner Table", "[day13]") { } TEST_CASE("Reindeer Olympics", "[day14]") { - // line_view lv = load_file("../src/2015/day14/input"); + line_view lv = load_file("../src/2015/day14/input"); + REQUIRE(0 == aoc2015::day14(lv, 2503)); } |