Skip to content

Commit 7ce48ed

Browse files
authored
Update quicksort.py
1 parent 7329d5d commit 7ce48ed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

divide_and_conquer/quicksort.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
def quicksort(arr: list) -> list:
22
"""Quicksort function implementation in Python.
3+
4+
https://en.wikipedia.org/wiki/Quicksort
35
46
>>> quicksort([])
57
[]

0 commit comments

Comments
 (0)