Sandbox

From World Wide Wiegert Wiki - WWWW
Revision as of 16:49, 20 November 2023 by Damme (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Welcome!

Random link

Syntax highlightning:

Code:

<syntaxhighlight lang="python">
def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
</syntaxhighlight>

Result:

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass

Supported languages: https://www.mediawiki.org/wiki/Extension:SyntaxHighlight#Supported_languages


8472.png