freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-436-unfair-wager.ar...

55 lines
616 B
Markdown
Raw Normal View History

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