From eb284a98c6febe943c81dc529d881f2a9752ee74 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 9 Dec 2019 04:03:50 -0500 Subject: IEnumerable instead of List --- lib/IntCodeVM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/IntCodeVM.cs b/lib/IntCodeVM.cs index 92cd539..f7699c6 100644 --- a/lib/IntCodeVM.cs +++ b/lib/IntCodeVM.cs @@ -12,7 +12,7 @@ namespace aoc2019.lib private readonly long[] program; public Queue input, output; - public IntCodeVM(List tape) + public IntCodeVM(IEnumerable tape) { i = 0; relbase = 0; -- cgit 1.4.1