Skip to content

Commit 428f96e

Browse files
authored
Update AdaptiveMergeSort.java
1 parent 31c386a commit 428f96e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/sorts/AdaptiveMergeSort.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ else if (aux[j].compareTo(aux[i]) < 0)
4242

4343
public static void main(String[] args) {
4444
AdaptiveMergeSort adaptiveMergeSort = new AdaptiveMergeSort();
45-
45+
4646
Integer[] integers = {4, 23, 6, 78, 1, 54, 231, 9, 12};
4747
SortUtils.print(adaptiveMergeSort.sort(integers));
4848

0 commit comments

Comments
 (0)