freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-335-gathering-the-b...

56 lines
1.2 KiB
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: 5900f4bd1000cf542c50ffce
challengeType: 5
videoUrl: ''
title: 问题335收集豆子
---
## Description
<section id="description">每当彼得感到无聊时他都会放一些碗每个碗里都放一个豆子。在此之后他将所有的豆子从一个碗中取出然后顺时针将它们逐一放入碗中。他重复这一点从碗里开始扔掉最后一根豆子直到最初的情况再次出现。例如有5个碗他的行为如下 <p>所以有5个碗需要Peter 15的动作才能恢复到初始状态。 </p><p>设Mx表示从x碗开始返回初始状态所需的移动次数。因此M5= 15.还可以证实M100= 10920。 </p><p>找到M2k + 1。给出你的答案模数79。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler335()</code>应返回5032316。
testString: assert.strictEqual(euler335(), 5032316);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler335() {
// Good luck!
return true;
}
euler335();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>