Difference between revisions of "Sandbox"
From World Wide Wiegert Wiki - WWWW
								
												
				| Line 1: | Line 1: | ||
| <syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
| def quick_sort(arr): | |||
| 	less = [] | |||
| 	pivot_list = [] | |||
| 	more = [] | |||
| 	if len(arr) <= 1: | |||
| 		return arr | |||
| 	else: | |||
| 		pass | |||
| </syntaxhighlight> | </syntaxhighlight> | ||
| {{ #tag: syntaxhighlight | | {{ #tag: syntaxhighlight | | ||
| <<noinclude/>syntaxhighlight lang="python"  | <<noinclude/>syntaxhighlight lang="python"> | ||
| def quick_sort(arr): | def quick_sort(arr): | ||
| 	less = [] | 	less = [] | ||
Revision as of 10:03, 25 September 2020
def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
<syntaxhighlight lang="python">
def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
</syntaxhighlight>
https://www.mediawiki.org/wiki/Extension:SyntaxHighlight#Supported_languages
