--- id: 5900f3a51000cf542c50feb8 challengeType: 5 title: 'Problem 57: Square root convergents' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler57(), 153, "euler57() should return 153.");' ```
## Challenge Seed
```js function euler57() { // Good luck! return true; } euler57(); ```
## Solution
```js // solution required ```