freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-280-ant-and-seeds.c...

55 lines
613 B
Markdown

---
id: 5900f4841000cf542c50ff97
challengeType: 5
title: 'Problem 280: Ant and seeds'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler280(), 430.088247, "<code>euler280()</code> should return 430.088247.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler280() {
// Good luck!
return true;
}
euler280();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>