Test: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="python" line> def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>") |
(No difference)
|
Revision as of 11:35, 17 May 2024
def quick_sort(arr): less = [] pivot_list = [] more = [] if len(arr) <= 1: return arr else: pass