freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-298-selective-amnes...

55 lines
617 B
Markdown
Raw Normal View History

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