Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-454-diophantine-reciprocals-iii.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

56 lines
886 B
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: 5900f5331000cf542c510045
challengeType: 5
videoUrl: ''
title: 问题454丢番图倒数III
---
## Description
<section id="description">在下面的等式中xy和n是正整数。 <p> 1x + 1y = 1n </p><p>对于极限L我们将FL定义为满足x &lt;y≤L的解的数量。 </p><p>我们可以验证F15= 4和F1000= 1069.找到F1012</p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler454()</code>应该返回5435004633092。
testString: assert.strictEqual(euler454(), 5435004633092);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler454() {
// Good luck!
return true;
}
euler454();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>