(String[] args)
| 4 | public class Main { |
| 5 | //Driver Function |
| 6 | public static void main(String[] args) { |
| 7 | int[] arr = {7, 9, 2, 4, 10}; |
| 8 | insertionSort(arr); |
| 9 | System.out.println(Arrays.toString(arr)); |
| 10 | } |
| 11 | //Insertion Sort Algorithm |
| 12 | static void insertionSort(int[] arr) { |
| 13 | for (int i = 0; i < arr.length - 1; i++) { |
nothing calls this directly
no test coverage detected