This commit is contained in:
2018-12-13 00:36:09 +01:00
parent 05dd29a683
commit af57ea329a
6 changed files with 809 additions and 1 deletions

View File

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