From 08e67ecace269c07d0f40333e2d0ede51f9a6161 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 6 Dec 2021 01:00:14 -0500 Subject: day 6 part 2 --- aoc2021.test/DayTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'aoc2021.test') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index c57eead..b5cad43 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -9,6 +9,7 @@ public class DayTests [DataRow(typeof(Day03), "3009600", "6940518")] [DataRow(typeof(Day04), "8580", "9576")] [DataRow(typeof(Day05), "7318", "19939")] + [DataRow(typeof(Day06), "362740", "1644874076764")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -44,7 +45,7 @@ public class DayTests [DataRow(typeof(Day03), "198", "230")] [DataRow(typeof(Day04), "4512", "1924")] [DataRow(typeof(Day05), "5", "12")] - [DataRow(typeof(Day06), "5934", "")] + [DataRow(typeof(Day06), "5934", "26984457539")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1