MCPcopy Create free account
hub / github.com/apna-college/Alpha / printArr

Method printArr

2_Basic Sorting/SelectionSort.java:38–43  ·  view source on GitHub ↗
(int arr[])

Source from the content-addressed store, hash-verified

36 }
37
38 public static void printArr(int arr[]) {
39 for(int i=0; i<arr.length; i++) {
40 System.out.print(arr[i]+" ");
41 }
42 System.out.println();
43 }
44 public static void main(String args[]) {
45 int arr[] = {5, 4, 1, 3, 2};
46 selectionSortDescending(arr);

Callers 1

mainMethod · 0.95

Calls 1

printMethod · 0.45

Tested by

no test coverage detected