示例#1
0
        public static void Part2(string[] input)
        {
            Helper.PrintChallengePart("Part 2");

            int count = CustomCustoms.GetCommonGroupPositives(input);

            Console.WriteLine("Common Positive Answers: " + count);


        }
示例#2
0
        public static void Part1(string[] input)
        {
            Helper.PrintChallengePart("Part 1");

            int count = CustomCustoms.GetGroupAnswers(input);


            Console.WriteLine("Positive Answers: "+count);

        }