Testing page: Difference between revisions
Jump to navigation
Jump to search
imported>Sjwhitak (Created page with "Edit anything you want on here to goof around or test things.") |
imported>Sjwhitak (Testing syntax highlighting.) |
||
Line 1: | Line 1: | ||
Edit anything you want on here to goof around or test things. |
Edit anything you want on here to goof around or test things. |
||
<syntaxhighlight lang="python" line> |
|||
def quick_sort(arr): |
|||
less = [] |
|||
pivot_list = [] |
|||
more = [] |
|||
if len(arr) <= 1: |
|||
return arr |
|||
else: |
|||
pass |
|||
</syntaxhighlight> |
Revision as of 15:00, 14 March 2022
Edit anything you want on here to goof around or test things.
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass