--- id: 5900f54b1000cf542c51005d challengeType: 5 title: 'Problem 479: Roots on the Rise' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler479(), 191541795, "euler479() should return 191541795.");' ```
## Challenge Seed
```js function euler479() { // Good luck! return true; } euler479(); ```
## Solution
```js // solution required ```