(String args[])
| 37 | } |
| 38 | |
| 39 | public static void main(String args[]) { |
| 40 | int arr[] = {5, 4, 1, 3, 2}; |
| 41 | insertionSortDescending(arr); |
| 42 | printArr(arr); |
| 43 | |
| 44 | //Inbuilt Sorting Algo |
| 45 | //Arrays.sort(arr); |
| 46 | } |
| 47 | } |
nothing calls this directly
no test coverage detected