Difference between revisions of "User:LovelyA72/Sandbox"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="python" line='line'> def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>") |
|||
Line 1: | Line 1: | ||
− | <syntaxhighlight lang="python" | + | <syntaxhighlight lang="python"> |
def quick_sort(arr): | def quick_sort(arr): | ||
less = [] | less = [] |
Latest revision as of 14:30, 5 May 2021
def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass