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

613 B

id challengeType title videoUrl localeTitle
5900f4841000cf542c50ff97 5 Problem 280: Ant and seeds

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler280(), 430.088247, "<code>euler280()</code> should return 430.088247.");'

Challenge Seed

function euler280() {
  // Good luck!
  return true;
}

euler280();

Solution

// solution required