Exemplo n.º 1
0
        static void DayTwentyTest()
        {
            Console.WriteLine("Day 20 Part 1 Test Output");
            DayTwenty dayTwenty = new DayTwenty();
            uint      minimum   = dayTwenty.Test();

            Console.WriteLine("Lowest Valued IP: " + minimum);
            Console.ReadLine();
        }
Exemplo n.º 2
0
        static void DayTwentyPartTwo()
        {
            Console.WriteLine("Day 20 Part 2 Output");
            DayTwenty dayTwenty = new DayTwenty();
            uint      valid     = dayTwenty.PartTwo();

            Console.WriteLine("Valid IPs: " + valid);
            Console.ReadLine();
        }