Sandbox: Difference between revisions
imported>Fadenb No edit summary |
imported>Fadenb No edit summary |
||
Line 16: | Line 16: | ||
<syntaxhighlight lang="python" line='line'> | <syntaxhighlight lang="python" line='line'> | ||
def quickSort(arr): | def quickSort(arr): | ||
less = [] | less = [] | ||
pivotList = [] | pivotList = [] |
Revision as of 17:53, 22 August 2017
mehr tests
test hier
test
Sand that box Shoop da whoop! Herp Derp
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass