freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-226-a-scoop-of-blan...

55 lines
621 B
Markdown
Raw Normal View History

---
id: 5900f4511000cf542c50ff62
challengeType: 5
title: 'Problem 226: A Scoop of Blancmange'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler226(), 0.11316017, "<code>euler226()</code> should return 0.11316017.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler226() {
// Good luck!
return true;
}
euler226();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>