freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-235-an-arithmetic-g...

640 B

id challengeType title videoUrl localeTitle
5900f4571000cf542c50ff6a 5 Problem 235: An Arithmetic Geometric sequence

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler235();

Solution

// solution required