--- id: 5900f46b1000cf542c50ff7d challengeType: 5 title: 'Problem 254: Sums of Digit Factorials' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler254(), 8184523820510, "euler254() should return 8184523820510.");' ```
## Challenge Seed
```js function euler254() { // Good luck! return true; } euler254(); ```
## Solution
```js // solution required ```