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

55 lines
617 B
Markdown

---
id: 5900f4f21000cf542c510004
challengeType: 5
title: 'Problem 389: Platonic Dice'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler389(), 2406376.3623, "<code>euler389()</code> should return 2406376.3623.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler389() {
// Good luck!
return true;
}
euler389();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>