Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-474-last-digits-of-divisors.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

57 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f5471000cf542c510059
challengeType: 5
title: 'Problem 474: Last digits of divisors'
videoUrl: ''
localeTitle: 问题474除数的最后数字
---
## Description
<section id="description">对于正整数n和数字d我们将Fnd定义为n的除数的数其最后的数字等于d。例如F84,4= 3.在84的除数中1,2,3,4,6,7,12,14,21,28,42,84其中三个4,14 84有最后一位数字4。 <p>我们还可以验证F1212= 11和F50123= 17888。 </p><p>找到F10665432modulo1016 + 61</p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler474()</code>应该返回9690646731515010。
testString: assert.strictEqual(euler474(), 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>