--- id: 5900f3a41000cf542c50feb7 challengeType: 5 title: 'Problem 56: Powerful digit sum' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler56(), 972, "euler56() should return 972.");' ```
## Challenge Seed
```js function euler56() { // Good luck! return true; } euler56(); ```
## Solution
```js // solution required ```