freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-454-diophantine-rec...

56 lines
886 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
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>