--- id: 5900f46d1000cf542c50ff7f challengeType: 5 title: 'Problem 255: Rounded Square Roots' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler255(), 4.447401118, "euler255() should return 4.447401118.");' ```
## Challenge Seed
```js function euler255() { // Good luck! return true; } euler255(); ```
## Solution
```js // solution required ```