about summary refs log tree commit diff
path: root/Day4.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day4.cs')
-rw-r--r--Day4.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Day4.cs b/Day4.cs
index 1a7ece7..fad209d 100644
--- a/Day4.cs
+++ b/Day4.cs
@@ -12,9 +12,7 @@ namespace aoc2019
 
         public Day4()
         {
-            var range = File.ReadLines("input/day4.in")
-                .First().Split('-').Select(int.Parse).ToList();
-
+            var range = Input.First().Split('-').Select(int.Parse).ToList();
             start = range[0]; end = range[1];
         }