Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AdarshAddee/Hacktoberfest2022_for_Beginers
/ quicksort
Function
quicksort
Python/QuickSort.py:20–24 ·
view source on GitHub ↗
(A, low, high)
Source
from the content-addressed store, hash-verified
18
19
20
def
quicksort(A, low, high):
21
if
low < high:
22
pi = partition(A, low, high)
23
quicksort(A, low, pi - 1)
24
quicksort(A, pi + 1, high)
25
26
27
Callers
1
QuickSort.py
File · 0.85
Calls
1
partition
Function · 0.85
Tested by
no test coverage detected