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