6 lines
70 B
Text
6 lines
70 B
Text
|
|
func binomial(n,k) {
|
||
|
|
n! / ((n-k)! * k!)
|
||
|
|
}
|
||
|
|
|
||
|
|
say binomial(400, 200)
|