SamplePage: Difference between revisions
Jump to navigation
Jump to search
(Created page with " == Example of Syntax Highlighting == <syntaxhighlight lang="python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr e...") |
No edit summary |
||
Line 12: | Line 12: | ||
pass | pass | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Hotlinking Images == |
Revision as of 17:59, 12 July 2017
Example of Syntax Highlighting
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass