Ejemplo n.º 1
0
 public int[] TestcreateArray(int size)
 {
     return(ListForestEdge.createArray(size));
 }
Ejemplo n.º 2
0
 public int[] TestfirstReverseTry(int[] arr)
 {
     return(ListForestEdge.firstReverseTry(arr));
 }
Ejemplo n.º 3
0
 public int[] TestarrayReplace(int[] inputArray, int elemToReplace, int substitutionElem)
 {
     return(ListForestEdge.arrayReplace(inputArray, elemToReplace, substitutionElem));
 }
Ejemplo n.º 4
0
 public int[] TestconcatenateArrays(int[] a, int[] b)
 {
     return(ListForestEdge.concatenateArrays(a, b));
 }
Ejemplo n.º 5
0
 public int[] TestremoveArrayPart(int[] inputArray, int l, int r)
 {
     return(ListForestEdge.removeArrayPart(inputArray, l, r));
 }
Ejemplo n.º 6
0
 public bool TestisSmooth(int[] arr)
 {
     return(ListForestEdge.isSmooth(arr));
 }
Ejemplo n.º 7
0
 public int[] TestreplaceMiddle(int[] arr)
 {
     return(ListForestEdge.replaceMiddle(arr));
 }
Ejemplo n.º 8
0
 public int TestmakeArrayConsecutive2(int[] statues)
 {
     return(ListForestEdge.makeArrayConsecutive2(statues));
 }