--- id: 5900f4381000cf542c50ff4a challengeType: 5 title: 'Problem 203: Squarefree Binomial Coefficients' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler203(), 34029210557338, "euler203() should return 34029210557338.");' ```
## Challenge Seed
```js function euler203() { // Good luck! return true; } euler203(); ```
## Solution
```js // solution required ```