(String args[])
| 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 | } |
nothing calls this directly
no test coverage detected