1.2 KiB
1.2 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4841000cf542c50ff97 | 5 | 问题280:蚂蚁和种子 |
Description
步行开始时,将种子放在下排的每个正方形上。 当蚂蚁不携带种子并到达包含种子的下排的正方形时,它将开始携带种子。 蚂蚁会将种子放在最终到达的上一行的第一个空方格上。
在将所有种子都放到第一行之前,预期的步骤数是多少? 将答案四舍五入到小数点后六位。
Instructions
Tests
tests:
- text: '<code>euler280()</code>应该返回430.088247。'
testString: assert.strictEqual(euler280(), 430.088247);
Challenge Seed
function euler280() {
// Good luck!
return true;
}
euler280();
Solution
// solution required
/section>