Code Highlight Test: Difference between revisions

From OuroDev
(Created page with "Test <source lang="javascript" line start="2" highlight="4-6"> // SyntaxHighlighter makes your code snippets beautiful without tiring your servers. // http://alexgorbatchev.c...")
 
m (2 revisions imported: Importing Portal Corps Wiki pages and history - Feb 6, 2020)
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:
</source>
</source>


<syntaxhighlight lang="Python" line='line'>
<syntaxhighlight lang="python" line='line'>
def quickSort(arr):
def quickSort(arr):
less = []
less = []

Latest revision as of 11:02, 6 February 2020

Test

// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
// http://alexgorbatchev.com
var setArray = function(elems) {
    this.length = 0;
    push.apply(this, elems);
    return this;
}
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass