freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-205-dice-game.arabi...

607 B

id challengeType title videoUrl localeTitle
5900f4391000cf542c50ff4c 5 Problem 205: Dice Game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler205();

Solution

// solution required