Code Highlight Test: Difference between revisions
From OuroDev
ChrisKitsch (talk | contribs) 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..." |
pc>Fuzzy c mNo edit summary |
||
Line 11: | Line 11: | ||
</source> | </source> | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="python" line='line'> | ||
def quickSort(arr): | def quickSort(arr): | ||
less = [] | less = [] |
Revision as of 08:10, 12 June 2019
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