MCPcopy Create free account
hub / github.com/Manvityagi/PW-Skills-Java-Course-Codes / main

Method main

Lecture 38 - Selection Sort/src/Main.java:19–25  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

selectionSortMethod · 0.95

Tested by

no test coverage detected