From eee5ff67a1758675f334f921ba330410caeedd03 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 8 Dec 2021 11:33:26 -0500 Subject: [PATCH] add correct answer to d8p2 --- aoc2021.test/DayTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index bfd7dc7..3e94274 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -11,7 +11,7 @@ public class DayTests [DataRow(typeof(Day05), "7318", "19939")] [DataRow(typeof(Day06), "362740", "1644874076764")] [DataRow(typeof(Day07), "345035", "97038163")] - [DataRow(typeof(Day08), "362", "")] + [DataRow(typeof(Day08), "362", "1020159")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew();