We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31c386a commit 428f96eCopy full SHA for 428f96e
src/main/java/com/thealgorithms/sorts/AdaptiveMergeSort.java
@@ -42,7 +42,7 @@ else if (aux[j].compareTo(aux[i]) < 0)
42
43
public static void main(String[] args) {
44
AdaptiveMergeSort adaptiveMergeSort = new AdaptiveMergeSort();
45
-
+
46
Integer[] integers = {4, 23, 6, 78, 1, 54, 231, 9, 12};
47
SortUtils.print(adaptiveMergeSort.sort(integers));
48
0 commit comments