--- id: 5900f5331000cf542c510046 challengeType: 5 title: 'Problem 455: Powers With Trailing Digits' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler455(), 450186511399999, "euler455() should return 450186511399999.");' ```
## Challenge Seed
```js function euler455() { // Good luck! return true; } euler455(); ```
## Solution
```js // solution required ```