MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/SelectionSort.java:25–33  ·  view source on GitHub ↗
(String a[])

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

selectionSortMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected