--- id: 5900f4641000cf542c50ff76 challengeType: 5 title: 'Problem 247: Squares under a hyperbola' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler247(), 782252, "euler247() should return 782252.");' ```
## Challenge Seed
```js function euler247() { // Good luck! return true; } euler247(); ```
## Solution
```js // solution required ```