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