Exemplo n.º 1
0
        static void DaySixPartTwo()
        {
            Console.WriteLine("Day 6 Part 2 Output");
            DaySix daySix = new DaySix();
            string result = daySix.PartTwo();

            Console.WriteLine("Message: " + result);
            Console.ReadLine();
        }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     DaySix.PartTwo();
 }