833 B
833 B
id, title, challengeType, videoUrl
id | title | challengeType | videoUrl |
---|---|---|---|
598de241872ef8353c58a7a2 | 评估二项式系数 | 5 |
--description--
写一个函数来计算给定n和k值的二项式系数。
推荐这个公式:
$ \\ binom {n} {k} = \\ frac {n!} {(nk)!k!} = \\ frac {n(n-1)(n-2)\\ ldots(n-k + 1)} { k(k-1)(k-2)\\ ldots 1} $--hints--
binom
是一个功能。
assert(typeof binom === 'function');
binom(5,3)
应该返回10。
assert.equal(binom(5, 3), 10);
binom(7,2)
应该返回21。
assert.equal(binom(7, 2), 21);
binom(10,4)
应该返回210。
assert.equal(binom(10, 4), 210);
binom(6,1)
应该返回6。
assert.equal(binom(6, 1), 6);
binom(12,8)
应该返回495。
assert.equal(binom(12, 8), 495);