Site Notice

hello, world

Difference between revisions of "Syntax highlight"

From Project-EPB Commons
(Created page with "<syntaxhighlight lang="Python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>")
 
 
Line 1: Line 1:
<syntaxhighlight lang="Python" line='line'>
+
<syntaxhighlight lang="python" line='line'>
 
def quickSort(arr):
 
def quickSort(arr):
 
less = []
 
less = []

Latest revision as of 09:10, 13 November 2019

1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass