--- id: 5900f4181000cf542c50ff2a challengeType: 5 title: 'Problem 171: Finding numbers for which the sum of the squares of the digits is a square' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler171(), 142989277, "euler171() should return 142989277.");' ```
## Challenge Seed
```js function euler171() { // Good luck! return true; } euler171(); ```
## Solution
```js // solution required ```