static void Main(string[] args) { Day01.Run(); Day02.Run(); Day03.Run(); Day04.Run(); Day05.Run(); Day06.Run(); Day07.Run(); Day08.Run(); Day09.Run(); Day10.Run(); Day11.Run(); Day12.Run(); Day13.Run(); Day14.Run(); Day15.Run(); Day16.Run(); Day17.Run(); Day18.Run(); Day19a.Run(); Day19b.Run(); Day20.Run(); Day21.Run(); Day22.Run(); Day23.Run(); Day24.Run(); Day25.Run(); }
static void Main(string[] args) { Helper.PrintChallenge("Day 1"); Day1.Run(); Helper.PrintChallenge("Day 2"); Day2.Run(); Helper.PrintChallenge("Day 3"); Day3.Run(); Helper.PrintChallenge("Day 4"); Day4.Run(); Helper.PrintChallenge("Day 5"); Day5.Run(); Helper.PrintChallenge("Day 6"); Day6.Run(); Helper.PrintChallenge("Day 7"); Day7.Run(); Helper.PrintChallenge("Day 8"); Day8.Run(); Helper.PrintChallenge("Day 9"); Day9.Run(); Helper.PrintChallenge("Day 10"); Day10.Run(); Helper.PrintChallenge("Day 11"); Day11.Run(); Helper.PrintChallenge("Day 12"); Day12.Run(); Helper.PrintChallenge("Day 13"); Day13.Run(); Helper.PrintChallenge("Day 14"); Day14.Run(); Helper.PrintChallenge("Day 15"); Day15.Run(); Helper.PrintChallenge("Day 16"); Day16.Run(); Helper.PrintChallenge("Day 17"); Day17.Run(); }
static void Main(string[] args) { while (true) { Console.WriteLine("*******************"); Console.WriteLine("Advent of Code 2020"); Console.WriteLine("*******************"); Console.WriteLine(); Console.Write("Run day: "); int dayToRun = int.Parse(Console.ReadLine()); switch (dayToRun) { case 1: Day01.Run(); break; case 2: Day02.Run(); break; case 3: Day03.Run(); break; case 4: Day04.Run(); break; case 5: Day05.Run(); break; case 6: Day06.Run(); break; case 7: Day07.Run(); break; case 8: Day08.Run(); break; case 9: Day09.Run(); break; case 10: Day10.Run(); break; case 11: Day11.Run(); break; case 12: Day12.Run(); break; case 13: Day13.Run(); break; case 14: Day14.Run(); break; case 15: Day15.Run(); break; case 16: Day16.Run(); break; case 17: Day17.Run(); break; case 18: Day18.Run(); break; case 19: Day19.Run(); break; case 20: Day20.Run(); break; case 21: Day21.Run(); break; case 22: Day22.Run(); break; case 23: Day23.Run(); break; case 24: Day24.Run(); break; case 25: Day25.Run(); break; } Console.WriteLine(); } }