--- id: 5900f4891000cf542c50ff9b challengeType: 5 title: 'Problem 284: Steady Squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler284(), 5a411d7b, "euler284() should return 5a411d7b.");' ```
## Challenge Seed
```js function euler284() { // Good luck! return true; } euler284(); ```
## Solution
```js // solution required ```