MCPcopy Index your code
hub / github.com/Tiwarishashwat/InterviewCodes / main

Method main

MergeSort.java:76–88  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

74
75 // Driver code
76 public static void main(String args[])
77 {
78 int arr[] = { 12, 11, 13, 5, 6, 7 };
79
80 System.out.println("Given Array");
81 printArray(arr);
82
83 MergeSort ob = new MergeSort();
84 ob.sort(arr, 0, arr.length - 1);
85
86 System.out.println("\nSorted array");
87 printArray(arr);
88 }
89}

Callers

nothing calls this directly

Calls 2

printArrayMethod · 0.95
sortMethod · 0.95

Tested by

no test coverage detected