* 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.2 KiB
1.2 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3d01000cf542c50fee3 | 5 | Problem 100: Arranged probability | 问题100:安排概率 |
Description
Instructions
Tests
tests:
- text: <code>euler100()</code>应该返回756872327473。
testString: assert.strictEqual(euler100(), 756872327473);
Challenge Seed
function euler100() {
// Good luck!
return true;
}
euler100();
Solution
// solution required