881 B
881 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4af1000cf542c50ffc1 | 5 | 问题322:二项式系数可被10整除 |
Description
Find T(1018, 1012-10).
Instructions
Tests
tests:
- text: <code>euler322()</code>应该返回999998760323314000。
testString: assert.strictEqual(euler322(), 999998760323314000);
Challenge Seed
function euler322() {
// Good luck!
return true;
}
euler322();
Solution
// solution required
/section>