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