--- id: 5900f4af1000cf542c50ffc1 challengeType: 5 title: 'Problem 322: Binomial coefficients divisible by 10' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler322(), 999998760323314000, "euler322() should return 999998760323314000.");' ```
## Challenge Seed
```js function euler322() { // Good luck! return true; } euler322(); ```
## Solution
```js // solution required ```