(String[] args)
| 17 | } |
| 18 | } |
| 19 | public static void main(String[] args) { |
| 20 | int[] arr = {7, 4, 1, 2, 100, 90}; |
| 21 | selectionSort(arr); |
| 22 | for(int i = 0; i < arr.length; i++){ |
| 23 | System.out.print(arr[i] + " "); |
| 24 | } |
| 25 | } |
| 26 | } |
nothing calls this directly
no test coverage detected