Day02 part 1

This commit is contained in:
2018-12-08 00:22:44 +01:00
parent b8a42fd95c
commit d6866863ea
6 changed files with 100 additions and 1 deletions

View File

@@ -7,12 +7,13 @@ namespace AdventOfCode2017
{
private static void Main(string[] args)
{
int currentDayNumber = 1;
int currentDayNumber = 2;
IDay currentDay = null;
switch (currentDayNumber)
{
case 1: currentDay = new Day01(); break;
case 2: currentDay = new Day02(); break;
}
string[] linesDay = File.ReadAllLines(string.Format("inputs/Day{0:00}.txt", currentDayNumber));