(String a[])
| 23 | } |
| 24 | |
| 25 | public static void main(String a[]){ |
| 26 | int[] arr = {40,10,-30,45,39,32}; |
| 27 | System.out.println("Before Sorting : "); |
| 28 | System.out.println(Arrays.toString(arr)); |
| 29 | arr = selectionSort(arr); |
| 30 | System.out.println("==================="); |
| 31 | System.out.println("After Sorting : "); |
| 32 | System.out.println(Arrays.toString(arr)); |
| 33 | } |
| 34 | } |
nothing calls this directly
no test coverage detected