Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-343-fractional-sequences.md
Oliver Eyton-Williams ee1e8abd87 feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

47 lines
900 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: 5900f4c41000cf542c50ffd6
title: 问题343分数序列
challengeType: 5
videoUrl: ''
dashedName: problem-343-fractional-sequences
---
# --description--
对于任何正整数k分数xi / yi的有限序列ai由以下定义a1 = 1 / k且ai =xi-1 + 1/yi-1-1减少到最低项i> 1 。当ai达到某个整数n时序列停止。 当yi = 1时。定义fk= n。例如对于k = 20
1/20→2/19→3/18 = 1/6→2/5→3/4→4/3→5/2→6/1 = 6
所以f20= 6。
对于1≤k≤100f1= 1f2= 2f3= 1且Σfk3= 118937。
找Σfk3为1≤k≤2×106。
# --hints--
`euler343()`应该返回269533451410884200。
```js
assert.strictEqual(euler343(), 269533451410884200);
```
# --seed--
## --seed-contents--
```js
function euler343() {
return true;
}
euler343();
```
# --solutions--
```js
// solution required
```