--- id: 5900f48a1000cf542c50ff9d challengeType: 5 title: 'Problem 286: Scoring probabilities' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler286(), 52.6494571953, "euler286() should return 52.6494571953.");' ```
## Challenge Seed
```js function euler286() { // Good luck! return true; } euler286(); ```
## Solution
```js // solution required ```