Skip to content

Commit 1d2e033

Browse files
committed
commit Exercise_30_13
1 parent 5299e3b commit 1d2e033

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Chapter_30/exercise_30_13/Exercise_30_13.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public static void main(String[] args) {
1313
Integer[] list1 = new Integer[SIZE];
1414
Integer[] list2 = new Integer[SIZE];
1515

16-
for (int i = 0; i < list1.length; i++)
17-
list1[i] = list2[i] = new Integer((int)(Math.random() * 10000000));
16+
for(int i = 0; i < list1.length; i++)
17+
list1[i] = list2[i] = new Integer((int)(Math.random() * 10000000));
1818

1919
long startTime = System.currentTimeMillis();
2020
parallelMergeSort(list1);

0 commit comments

Comments
 (0)