about summary refs log tree commit diff
path: root/Day9.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day9.cs')
-rw-r--r--Day9.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Day9.cs b/Day9.cs
index 77e72e1..a50fdd9 100644
--- a/Day9.cs
+++ b/Day9.cs
@@ -14,14 +14,14 @@ namespace aoc2019
 
         public override int DayNumber => 9;
 
-        public override string Part1()
+        protected override string Part1()
         {
             vm.Reset();
             vm.Run(1);
             return $"{vm.output.ToDelimitedString(",")}";
         }
 
-        public override string Part2()
+        protected override string Part2()
         {
             vm.Reset();
             vm.Run(2);