public int[] TestcreateArray(int size) { return(ListForestEdge.createArray(size)); }
public int[] TestfirstReverseTry(int[] arr) { return(ListForestEdge.firstReverseTry(arr)); }
public int[] TestarrayReplace(int[] inputArray, int elemToReplace, int substitutionElem) { return(ListForestEdge.arrayReplace(inputArray, elemToReplace, substitutionElem)); }
public int[] TestconcatenateArrays(int[] a, int[] b) { return(ListForestEdge.concatenateArrays(a, b)); }
public int[] TestremoveArrayPart(int[] inputArray, int l, int r) { return(ListForestEdge.removeArrayPart(inputArray, l, r)); }
public bool TestisSmooth(int[] arr) { return(ListForestEdge.isSmooth(arr)); }
public int[] TestreplaceMiddle(int[] arr) { return(ListForestEdge.replaceMiddle(arr)); }
public int TestmakeArrayConsecutive2(int[] statues) { return(ListForestEdge.makeArrayConsecutive2(statues)); }