about summary refs log tree commit diff
path: root/aoc2019/Day13.cs
diff options
context:
space:
mode:
Diffstat (limited to 'aoc2019/Day13.cs')
-rw-r--r--aoc2019/Day13.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/aoc2019/Day13.cs b/aoc2019/Day13.cs
index 35e2dd7..dd6f8c6 100644
--- a/aoc2019/Day13.cs
+++ b/aoc2019/Day13.cs
@@ -3,12 +3,11 @@ namespace aoc2019;
 public sealed class Day13 : Day
 {
     private readonly Dictionary<(int x, int y), int> board;
-
     private readonly IntCodeVM vm;
 
     public Day13() : base(13, "Care Package")
     {
-        vm = new IntCodeVM(Input.First());
+        vm = new(Input.First());
         board = new Dictionary<(int, int), int>();
     }