This commit is contained in:
2023-04-09 23:30:07 +02:00
parent 6cb09716b6
commit 9a0fdca9f9
3 changed files with 50 additions and 1 deletions

View File

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