--- id: 5900f4971000cf542c50ffa9 challengeType: 5 title: 'Problem 298: Selective Amnesia' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler298(), 1.76882294, "euler298() should return 1.76882294.");' ```
## Challenge Seed
```js function euler298() { // Good luck! return true; } euler298(); ```
## Solution
```js // solution required ```