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

616 B

id challengeType title videoUrl localeTitle
5900f5221000cf542c510033 5 Problem 436: Unfair wager

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler436(), 0.5276662759, "<code>euler436()</code> should return 0.5276662759.");'

Challenge Seed

function euler436() {
  // Good luck!
  return true;
}

euler436();

Solution

// solution required