コード例 #1
0
        static void Main(string[] args)
        {
            Day04 day4 = new Day04();

            day4.Puzzle1();
            day4.Puzzle2();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: glhillman/AdventOfCode2020
        static void Main(string[] args)
        {
            Day04 day4 = new Day04();

            day4.Puzzel1();
            day4.Puzzle2();

            Console.Write("Press Enter to continue...");
            Console.ReadLine();
        }