We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5299e3b commit 1d2e033Copy full SHA for 1d2e033
Chapter_30/exercise_30_13/Exercise_30_13.java
@@ -13,8 +13,8 @@ public static void main(String[] args) {
13
Integer[] list1 = new Integer[SIZE];
14
Integer[] list2 = new Integer[SIZE];
15
16
- for (int i = 0; i < list1.length; i++)
17
- list1[i] = list2[i] = new Integer((int)(Math.random() * 10000000));
+ for(int i = 0; i < list1.length; i++)
+ list1[i] = list2[i] = new Integer((int)(Math.random() * 10000000));
18
19
long startTime = System.currentTimeMillis();
20
parallelMergeSort(list1);
0 commit comments