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