Sandbox: Difference between revisions
imported>Fadenb Final test for today. Let's see if the bot survives the night ;) |
imported>Samueldr No edit summary |
||
| Line 31: | Line 31: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{file|test.py|python|<nowiki> | |||
def quickSort(arr): | |||
[[ | less = [] | ||
pivotList = [] | |||
more = [] | |||
if len(arr) <= 1: | |||
return arr | |||
else: | |||
pass | |||
</nowiki>}} | |||