19 lines
286 B
C#
19 lines
286 B
C#
|
using AdvendOfCode2023;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
class Programm
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
var day1 = new Day1();
|
|||
|
day1.Day1PartOne();
|
|||
|
day1.Day1PartTwo();
|
|||
|
|
|||
|
var day2 = new Day2();
|
|||
|
day2.Day2PartOne();
|
|||
|
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
}
|