This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
radu
/
LaTeX-examples
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
7d278dd745
Branches
Tags
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
binomialkoeffizient.hs
binomialkoeffizient.hs
90 B
Historique
Raw
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