Difference between revisions of "Translations:Functional programming/3/cs"

From Marek Běhálek Wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="Haskell" > def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>")
 
(No difference)

Latest revision as of 11:06, 7 August 2019

def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass