freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-240-top-dice.arabic.md

626 B

id challengeType title videoUrl localeTitle
5900f45d1000cf542c50ff6f 5 Problem 240: Top Dice

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler240();

Solution

// solution required