Skip to content

Latest commit

 

History

History

sort-an-array

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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};