Skip to content

Commit 38f220c

Browse files
committed
- Lecture on Friday, 30th, 2026.
1 parent 61c5458 commit 38f220c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 2026-01-30-Generics_Sorting/src/main/java/de/hilling/chess

2026-01-30-Generics_Sorting/src/main/java/de/hilling/chess/Sort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private static <T extends Comparable<T>> int partition(@NonNull List<@NonNull T>
6363
swap(elements, i, j);
6464
}
6565
}
66-
print("move pivot element
66+
print("move pivot element to " + (i + 1));
6767
swap(elements, i + 1, right);
6868
return i + 1;
6969
}

0 commit comments

Comments
 (0)