28 lines
717 B
C#
28 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.IO;
|
|
using static System.Console;
|
|
|
|
namespace _2018_07
|
|
{
|
|
class Program
|
|
{
|
|
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
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|