about summary refs log tree commit diff
path: root/Day16.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day16.cs')
-rw-r--r--Day16.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Day16.cs b/Day16.cs
new file mode 100644
index 0000000..9f5fc8c
--- /dev/null
+++ b/Day16.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+namespace aoc2019
+{
+    internal class Day16 : Day
+    {
+        public override int DayNumber => 16;
+
+        public Day16()
+        {
+        }
+
+        public override string Part1()
+        {
+            return "";
+        }
+
+        public override string Part2()
+        {
+            return "";
+        }
+    }
+}