about summary refs log tree commit diff
path: root/Day3.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day3.cs')
-rw-r--r--Day3.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Day3.cs b/Day3.cs
index e3f998f..442c58a 100644
--- a/Day3.cs
+++ b/Day3.cs
@@ -14,7 +14,7 @@ namespace aoc2019
 
         public Day3()
         {
-            wires = File.ReadAllLines("input/day3.in").Select(ParseWire).ToList();
+            wires = Input.Select(ParseWire).ToList();
             intersections = wires[0].Keys.Intersect(wires[1].Keys);
         }