--- id: 5900f4041000cf542c50ff17 challengeType: 5 title: 'Problem 152: Writing one half as a sum of inverse squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler152(), 301, "euler152() should return 301.");' ```
## Challenge Seed
```js function euler152() { // Good luck! return true; } euler152(); ```
## Solution
```js // solution required ```