Esempio n. 1
0
        static void DayTwentyTwoPartTwoTest()
        {
            Console.WriteLine("Day 22 Part 2 Test Output");
            DayTwentyTwo dayTwentyTwo = new DayTwentyTwo();
            int          shortest     = dayTwentyTwo.PartTwoTest();

            Console.WriteLine("Shortest Path Length: " + shortest);
            Console.ReadLine();
        }
Esempio n. 2
0
        static void DayTwentyTwoPartOne()
        {
            Console.WriteLine("Day 22 Part 1 Output");
            DayTwentyTwo dayTwentyTwo = new DayTwentyTwo();
            int          viablePairs  = dayTwentyTwo.PartOne();

            Console.WriteLine("Viable Pairs: " + viablePairs);
            Console.ReadLine();
        }