freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-286-scoring-probabi...

627 B

id challengeType title videoUrl localeTitle
5900f48a1000cf542c50ff9d 5 Problem 286: Scoring probabilities

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler286();

Solution

// solution required