From 501ef0a5c7236491c67d9a78acca5edd1bf5ebd3 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 5 Dec 2019 01:44:55 -0500 Subject: make some stuff non-static --- Day2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Day2.cs') diff --git a/Day2.cs b/Day2.cs index e469bcc..095b454 100644 --- a/Day2.cs +++ b/Day2.cs @@ -8,7 +8,7 @@ namespace aoc2019 { public override int DayNumber => 2; - private static readonly IEnumerable input = + private readonly IEnumerable input = File.ReadLines("input/day2.in").First().Split(',').Select(int.Parse); public static List RunIntCode(int noun, int verb, List v) -- cgit 1.4.1