Difference between revisions of "Functional programming/en"
Jump to navigation
Jump to search
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 1: | Line 1: | ||
− | |||
== Functional Programming == | == Functional Programming == | ||
As the expressions above imply, Haskell has a notion of integers | As the expressions above imply, Haskell has a notion of integers |
Revision as of 13:52, 7 August 2019
Functional Programming
As the expressions above imply, Haskell has a notion of integers and floating point numbers. Integers can be arbitrarily large. Here, ~(^)~ provides integer exponentiation.
ghci> 313 ^ 15 27112218957718876716220410905036741257
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass