From f59f572a94717161779674a2c6136770648b93b1 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 22 Dec 2021 10:04:15 -0500 Subject: days 21 and 22 --- aoc2021.test/DayTests.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'aoc2021.test/DayTests.cs') diff --git a/aoc2021.test/DayTests.cs b/aoc2021.test/DayTests.cs index ff0346d..54d5997 100644 --- a/aoc2021.test/DayTests.cs +++ b/aoc2021.test/DayTests.cs @@ -41,6 +41,8 @@ public class DayTests [DataRow(typeof(Day18), "4289", "4807")] // [DataRow(typeof(Day19), "338", "9862")] // takes too long and i don't feel like optimizing [DataRow(typeof(Day20), "5306", "17497")] + [DataRow(typeof(Day21), "512442", "346642902541848")] + [DataRow(typeof(Day22), "658691", "1228699515783640")] public void CheckAllDays(Type dayType, string part1, string part2) { var s = Stopwatch.StartNew(); @@ -91,6 +93,8 @@ public class DayTests [DataRow(typeof(Day18), "4140", "3993")] [DataRow(typeof(Day19), "79", "3621")] [DataRow(typeof(Day20), "35", "3351")] + [DataRow(typeof(Day21), "739785", "444356092776315")] + [DataRow(typeof(Day22), "590784", "39769202357779")] public void CheckTestInputs(Type dayType, string part1, string part2) { Day.UseTestInput = true; -- cgit 1.4.1