aboutsummaryrefslogtreecommitdiff
path: root/test/test_2015.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_2015.cpp')
-rw-r--r--test/test_2015.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test_2015.cpp b/test/test_2015.cpp
index 9529c49..5fc6bc9 100644
--- a/test/test_2015.cpp
+++ b/test/test_2015.cpp
@@ -209,4 +209,8 @@ TEST_CASE("Medicine for Rudolph", "[day19]") {
REQUIRE(195 == p.second);
}
-TEST_CASE("Infinite Elves and Infinite Houses", "[day20]") {}
+TEST_CASE("Infinite Elves and Infinite Houses", "[day20]") {
+ auto p = aoc2015::day20(4);
+ // auto p = aoc2015::day20(36000000);
+ printf("%d %d\n", p.first, p.second);
+}