--- id: 5900f40d1000cf542c50ff1f challengeType: 5 title: 'Problem 160: Factorial trailing digits' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler160(), 16576, "euler160() should return 16576.");' ```
## Challenge Seed
```js function euler160() { // Good luck! return true; } euler160(); ```
## Solution
```js // solution required ```