MCPcopy Create free account
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / quickSort

Function quickSort

QuickSort.py:3–4  ·  view source on GitHub ↗
(alist)

Source from the content-addressed store, hash-verified

1# coding: utf-8
2
3def quickSort(alist):
4 quickSortHelper(alist, 0, len(alist)-1)
5
6def quickSortHelper(alist, first, last):
7 if first < last:

Callers 1

QuickSort.pyFile · 0.85

Calls 1

quickSortHelperFunction · 0.85

Tested by

no test coverage detected