Translations:Functional programming/3/cs

From Marek Běhálek Wiki
Revision as of 11:06, 7 August 2019 by Beh01 (talk | contribs) (Created page with "<syntaxhighlight lang="Haskell" > def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass