From d96f65b6b51b78ddd9f51896ea99c8010ed77812 Mon Sep 17 00:00:00 2001 From: kaiwu Date: Thu, 15 Dec 2022 18:09:56 +0800 Subject: 2022 day15 part1 --- test/test_2022.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/test_2022.cpp') diff --git a/test/test_2022.cpp b/test/test_2022.cpp index 8d80b5f..f8fb354 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -117,9 +117,9 @@ TEST_CASE("Regolith Reservoir", "[2022]") { REQUIRE(27566 == p.second); } -TEST_CASE("", "[2022]") { - line_view lv = load_file("../src/2022/day15/input0"); +TEST_CASE("Beacon Exclusion Zone", "[2022]") { + line_view lv = load_file("../src/2022/day15/input"); auto p = aoc2022::day15(lv); - REQUIRE(0 == p.first); + REQUIRE(6078701 == p.first); REQUIRE(0 == p.second); } -- cgit v1.2.3