September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -1,2 +0,0 @@
|
|||
java Binomial 100 30
|
||||
The Binomial Coefficient of 100 and 30 equals 29,372,339,821,610,944,823,963,760.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
def bico(n: Long, k: Long): Long = (n, k) match {
|
||||
case (n, 0) => 1
|
||||
case (0, k) => 0
|
||||
case (n, k) => bico(n - 1, k - 1) + bico(n - 1, k)
|
||||
}
|
||||
println("bico(5,3) = " + bico(5, 3))
|
||||
|
|
@ -1 +0,0 @@
|
|||
bico(5,3) = 10
|
||||
Loading…
Add table
Add a link
Reference in a new issue