Skip to content

Commit 9972919

Browse files
committed
Fixed some description
1 parent 2e41e13 commit 9972919

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/algorithms/sorting/quickSort/lomuto/QuickSort.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
* Implementation Invariant:
1717
* The pivot is in the correct position, with elements to its left being <= it, and elements to its right being > it.
1818
*
19-
* We are implementing Lomuto's partition scheme here due to ease of implementation and alignment with CS2040S lecture
20-
* slides. This is opposed to Hoare's partition scheme, see more at
19+
* We are implementing Lomuto's partition scheme here. This is opposed to Hoare's partition scheme, see more at
2120
* https://www.geeksforgeeks.org/hoares-vs-lomuto-partition-scheme-quicksort/.
2221
*
2322
* Complexity Analysis:

0 commit comments

Comments
 (0)