From e37e374b1377d11a424c791288eaa8949c1a7dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Wed, 26 Dec 2018 14:00:32 +0100 Subject: [PATCH] changed the input --- 2018_08/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2018_08/Program.cs b/2018_08/Program.cs index bd1a5a5..c114edd 100644 --- a/2018_08/Program.cs +++ b/2018_08/Program.cs @@ -12,8 +12,8 @@ namespace _2018_08 { static void Main(string[] args) { - string[] resTab = File.ReadAllText(@"..\..\..\Data\Adventofcode_181208\2018_08_data.txt").Split(' '); - //string[] resTab = @"2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2".Split(' '); + //string[] resTab = File.ReadAllText(@"..\..\..\Data\Adventofcode_181208\2018_08_data.txt").Split(' '); + string[] resTab = @"2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2".Split(' '); int[] numbers = new int[resTab.Length]; for (int i = 0; i < resTab.Length; i++) {