--- id: 5900f4531000cf542c50ff66 challengeType: 5 title: 'Problem 231: The prime factorisation of binomial coefficients' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler231(), 7526965179680, "euler231() should return 7526965179680.");' ```
## Challenge Seed
```js function euler231() { // Good luck! return true; } euler231(); ```
## Solution
```js // solution required ```