示例#1
0
        private static void Main(string[] args)
        {
            var matrix = GetMatrix("../../Inputs/day04.txt");

            Console.WriteLine($" Part I: {Passphrase.CountValidPassphrasesForOne(matrix)}");
            Console.WriteLine($"Part II: {Passphrase.CountValidPassphrasesForTwo(matrix)}");
            Console.ReadKey();
        }