* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4f21000cf542c510004 | 5 | Problem 389: Platonic Dice | 问题389:柏拉图式骰子 |
Description
Instructions
Tests
tests:
- text: <code>euler389()</code>应该返回2406376.3623。
testString: assert.strictEqual(euler389(), 2406376.3623);
Challenge Seed
function euler389() {
// Good luck!
return true;
}
euler389();
Solution
// solution required