Code Highlight Test: Difference between revisions

From OuroDev
pc>Fuzzy c
mNo edit summary
m (2 revisions imported: Importing Portal Corps Wiki pages and history - Feb 6, 2020)
 
(No difference)

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