Skip to content

Commit 0a550c1

Browse files
authored
Update AdaptiveMergeSort.java
1 parent 428f96e commit 0a550c1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ else if (aux[j].compareTo(aux[i]) < 0)
4242

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

0 commit comments

Comments
 (0)