예제 #1
0
 public void TestMethod_Sort_by_Min_Decrease()
 {
     int[][] actual   = JaggedArray.Sort_by_Min_Decrease(jaggedArray);
     int[][] expected =
     {
         new int[] { 11, 22 },
         new int[] {  1,3, 5, 7, 9 },
         new int[] {  0,2, 4, 6 },
     };
     Assert.AreEqual(expected, actual);
 }