public class Sorting implements Runnable {
private int[] arr;
private int threadCount; 
public Sorting(int[] arr, int threadCount) {
this.arr = arr;
this.threadCount = threadCount;
} 
public void run() {
MergeSort.concurrentMergeSort(arr, threadCount);
}
} 

![[SOLVED]  public class Sorting implements Runnable {](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Problem 3: Who are the Winners](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
 
 
Reviews
There are no reviews yet.