This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
radu
/
LaTeX-examples
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Pull-pyynnöt
0
Wiki
Puu:
abdf6ef315
Branchit
Tagit
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
binomialkoeffizient.hs
binomialkoeffizient.hs
90 B
Historia
Raaka
1
2
3
4
5
binom n k =
if (k==0) || (k==n)
then 1
else binom (n-1) (k-1) + binom (n-1) k