Example #1
0
 static void Main(string[] args)
 {
     Console.WriteLine(string.Join(", ", Kata.DeleteNth(new int[] { 20, 37, 20, 21 }, 1)));
 }
Example #2
0
 static void Main(string[] args)
 {
     // Kata.DeleteNth(new int[]{1,2,3,1,2,1,2,3 },2);20,37,20,21
     Kata.DeleteNth(new int[] { 20, 37, 20, 21 }, 1);
 }