--- id: 5900f5411000cf542c510054 challengeType: 5 title: 'Problem 468: Smooth divisors of binomial coefficients' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler468(), 852950321, "euler468() should return 852950321.");' ```
## Challenge Seed
```js function euler468() { // Good luck! return true; } euler468(); ```
## Solution
```js // solution required ```