steg 1 i struktur

This commit is contained in:
2018-12-16 10:10:44 +01:00
parent b78cf0791d
commit 8b8def5206
2 changed files with 54 additions and 0 deletions

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -10,6 +11,9 @@ namespace _2018_06
{
static void Main(string[] args)
{
string[] resTab = File.ReadAllLines(@"..\..\..\Data\Adventofcode_181206\2018_06_data.txt");
List<Tuple<int, int>> koords = new List<Tuple<int, int>>();
}
}
}