Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-74-digit-factorial-chains.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.3 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: 5900f3b61000cf542c50fec9
challengeType: 5
title: 'Problem 74: Digit factorial chains'
videoUrl: ''
localeTitle: 问题74数字因子链
---
## Description
<section id="description">数字145是众所周知的其数字的阶乘之和等于1451 + 4 + 5 = 1 + 24 + 120 = 145也许知名度较低的是169因为它产生了最长的数字链可以链接到169;事实证明只存在三个这样的循环169→363601→1454→169 871→45361→871 872→45362→872不难证明每个起始编号最终都会陷入循环。例如69→363600→1454→169→363601→145478→45360→871→45361→871540→145→145从69开始产生五个非重复项链但最长起始数低于一百万的非重复链是60个项。起始数低于一百万的链中有多少个包含正好六十个非重复项 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler74()</code>应返回402。
testString: assert.strictEqual(euler74(), 402);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler74() {
// Good luck!
return true;
}
euler74();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>