Day12 part 1

This commit is contained in:
2018-12-14 07:13:05 +01:00
parent e9139526a5
commit cd6a78eb75
6 changed files with 287 additions and 1 deletions

View File

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