Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.2 KiB
1.2 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4f21000cf542c510004 | 5 | false | Problem 389: Platonic Dice | 302053 |
Description
Instructions
Tests
tests:
- text: <code>euler389()</code> should return 2406376.3623.
testString: assert.strictEqual(euler389(), 2406376.3623);
Challenge Seed
function euler389() {
// Good luck!
return true;
}
euler389();
Solution
// solution required