Пример #1
0
 public static void _2017DayTenPartTwo()
 {
     Console.WriteLine("2017 Day 10 Part 1 Output");
     Puzzles._2017.DayTen dayTen = new Puzzles._2017.DayTen();
     dayTen.PartTwo();
     Console.ReadLine();
 }
Пример #2
0
        public static void _2017DayTenPartOne()
        {
            Console.WriteLine("2017 Day 10 Part 1 Output");
            Puzzles._2017.DayTen dayTen = new Puzzles._2017.DayTen();
            int solution = dayTen.PartOne();

            Console.WriteLine("Solution: " + solution);
            Console.ReadLine();
        }
Пример #3
0
        public static void _2017DayTenTest()
        {
            Console.WriteLine("2017 Day 10 Part Test Output");
            Puzzles._2017.DayTen dayTen = new Puzzles._2017.DayTen();
            string solution             = dayTen.Test();

            Console.WriteLine("Solution: " + solution);
            Console.ReadLine();
        }