AdventOfCode2022/Kalender/Program.cs

19 lines
359 B
C#
Raw Normal View History

2022-12-05 12:43:11 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kalender
{
internal class Program
{
static void Main(string[] args)
2022-12-06 08:00:59 +01:00
{
2022-12-08 12:55:33 +01:00
//day8_02.placeRightSite("61121151",6);
day8_02.day8_part2();
2022-12-05 12:43:11 +01:00
Console.ReadKey();
}
}
}