Easy Kata! Sort the elements of an integer array from low to high.
int[] array={-2,1,0,47,5,6,-6};
array = SortArray.sortArray(array);
//array sorted calling sortArray(array) from class SortArray
//array={-6,-2,0,1,5,6,47};
Easy Kata! Sort the elements of an integer array from low to high.
int[] array={-2,1,0,47,5,6,-6};
array = SortArray.sortArray(array);
//array sorted calling sortArray(array) from class SortArray
//array={-6,-2,0,1,5,6,47};