This commit is contained in:
2018-12-16 14:25:03 +01:00
parent 9f599fbf77
commit 6128917e02
6 changed files with 730 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ namespace AdventOfCode2018
{
private static void Main(string[] args)
{
int currentDayNumber = 12;
int currentDayNumber = 13;
IDay currentDay = null;
switch (currentDayNumber)
@@ -24,6 +24,7 @@ namespace AdventOfCode2018
case 10: currentDay = new Day10(); break;
case 11: currentDay = new Day11(); break;
case 12: currentDay = new Day12(); break;
case 13: currentDay = new Day13(); break;
}
string[] linesDay = File.ReadAllLines(string.Format("inputs/Day{0:00}.txt", currentDayNumber));