Skip to content

Commit 576fce6

Browse files
Update sorting/quick_sort.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent 6b27c2f commit 576fce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorting/quick_sort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace quick_sort {
5454
* @param high last point of the array (ending index)
5555
* @returns index of the smaller element
5656
*
57-
* Time Complexity
57+
* ### Time Complexity
5858
* best case, average Case: O(nlog(n))
5959
* Worst Case: O(n^2) (Worst case occur when the partition
6060
* is consistently unbalanced.)

0 commit comments

Comments
 (0)