From 77b0676842a067fec9fbdf97b351c9294af2a289 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 7 Dec 2020 13:59:51 -0500 Subject: [PATCH] day 7 partial progress --- 2020/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020/Program.cs b/2020/Program.cs index 61664ab..56ec921 100644 --- a/2020/Program.cs +++ b/2020/Program.cs @@ -19,7 +19,7 @@ namespace AdventOfCode { public class Program { static void Main(string[] args) { - Day06.Test(); + Day07.Test(); } } }