This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
radu
/
LaTeX-examples
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
abdf6ef315
Gałęzie
Tagi
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
binomialkoeffizient.hs
binomialkoeffizient.hs
90 B
Historia
Czysty
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