We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61c5458 commit 38f220cCopy full SHA for 38f220c
1 file changed
2026-01-30-Generics_Sorting/src/main/java/de/hilling/chess/Sort.java
@@ -63,7 +63,7 @@ private static <T extends Comparable<T>> int partition(@NonNull List<@NonNull T>
63
swap(elements, i, j);
64
}
65
66
- print("move pivot element
+ print("move pivot element to " + (i + 1));
67
swap(elements, i + 1, right);
68
return i + 1;
69
0 commit comments