--- id: 5900f3ac1000cf542c50febf challengeType: 5 title: 'Problem 64: Odd period square roots' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler64(), 1322, "euler64() should return 1322.");' ```
## Challenge Seed
```js function euler64() { // Good luck! return true; } euler64(); ```
## Solution
```js // solution required ```