--- id: 5900f40c1000cf542c50ff1e challengeType: 5 title: 'Problem 159: Digital root sums of factorisations' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler159(), 14489159, "euler159() should return 14489159.");' ```
## Challenge Seed
```js function euler159() { // Good luck! return true; } euler159(); ```
## Solution
```js // solution required ```