Example #1
0
        static void DayTwoPartOne()
        {
            Console.WriteLine("Day 2 Part 1 Output");
            DayTwo dayTwo = new DayTwo();
            string result = dayTwo.PartOne();

            Console.WriteLine(result);
            Console.ReadLine();
        }