static void Main(string[] args)
        {
            Day11 day11 = new Day11();

            day11.Part1();
            day11.Part2();

            Console.Write("Press Enter to continue...");
            Console.ReadLine();
        }
        public async Task Star2()
        {
            var lines = await ReadUtils.ReadAllLines("./Day11Part1Input.txt").ConfigureAwait(false);

            Assert.Equal(2002, Day11.Star1(lines, 5, 100));
        }
        public async Task Test2()
        {
            var lines = await ReadUtils.ReadAllLines("./Day11Part1Test1.txt").ConfigureAwait(false);

            Assert.Equal(26, Day11.Star1(lines, 5, 8));
        }
Exemple #4
0
        static void Main(string[] args)
        {
            Day11 d = new Day11();

            d.Solve();
        }