示例#1
0
        static void Main(string[] args)
        {
            Console.WriteLine(
                Kata.QueueTime(new[] { 1, 2, 3, 4 }, 1)
                );

            Console.WriteLine(
                Kata.QueueTime(new int[] { 2, 2, 3, 3, 4, 4 }, 2)
                );

            Console.ReadLine();
        }