--- id: 5900f4571000cf542c50ff6a challengeType: 5 title: 'Problem 235: An Arithmetic Geometric sequence' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler235(), 1.002322108633, "euler235() should return 1.002322108633.");' ```
## Challenge Seed
```js function euler235() { // Good luck! return true; } euler235(); ```
## Solution
```js // solution required ```