Nära lösning dag 8

This commit is contained in:
2018-12-20 00:56:38 +01:00
parent 9a3c385a5b
commit fd37de5835
7 changed files with 211 additions and 1 deletions

View File

@ -13,7 +13,14 @@ namespace _2018_07
static void Main(string[] args)
{
string[] resTab = File.ReadAllLines(@"..\..\..\Data\Adventofcode_181207\2018_07_data.txt");
//Step K must be finished before step G can begin.
Array.Sort(resTab);
foreach (string item in resTab)
{
WriteLine(item);
System.Collections.Generic.LinkedList<int> vs = new LinkedList<int>();
//Tills vidare ingen lösning
}
}
}