This commit is contained in:
2018-12-12 21:06:15 +01:00
parent 8e0f46bd7a
commit 05dd29a683
7 changed files with 325 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ namespace AdventOfCode2018
{
private static void Main(string[] args)
{
int currentDayNumber = 8;
int currentDayNumber = 9;
IDay currentDay = null;
switch (currentDayNumber)
@@ -20,6 +20,7 @@ namespace AdventOfCode2018
case 6: currentDay = new Day06(); break;
case 7: currentDay = new Day07(); break;
case 8: currentDay = new Day08(); break;
case 9: currentDay = new Day09(); break;
}
string[] linesDay = File.ReadAllLines(string.Format("inputs/Day{0:00}.txt", currentDayNumber));