freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-474-last-digits-of-...

55 lines
701 B
Markdown

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