--- id: 5900f5471000cf542c510059 challengeType: 5 title: 'Problem 474: Last digits of divisors' videoUrl: '' localeTitle: 'Задача 474: Последние цифры делителей' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler474(), 9690646731515010, "euler474() should return 9690646731515010.");' ```
## Challenge Seed
```js function euler474() { // Good luck! return true; } euler474(); ```
## Solution
```js // solution required ```