From b632755e96b6a3b4b08f9443e07e2cff696235de Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 7 Dec 2020 13:43:30 -0500 Subject: [PATCH] finish day 6 --- 2020/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020/Program.cs b/2020/Program.cs index 75aac0f..61664ab 100644 --- a/2020/Program.cs +++ b/2020/Program.cs @@ -19,7 +19,7 @@ namespace AdventOfCode { public class Program { static void Main(string[] args) { - Day05.Test(); + Day06.Test(); } } }