freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-389-platonic-dice.a...

617 B

id challengeType title videoUrl localeTitle
5900f4f21000cf542c510004 5 Problem 389: Platonic Dice

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler389();

Solution

// solution required