public static void _2017DayTenPartTwo() { Console.WriteLine("2017 Day 10 Part 1 Output"); Puzzles._2017.DayTen dayTen = new Puzzles._2017.DayTen(); dayTen.PartTwo(); Console.ReadLine(); }
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(); }
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(); }