* 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
942 B
942 B
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3e21000cf542c50fef5 | 5 | Problem 118: Pandigital prime sets | 问题118:Pandigital prime set |
Description
Instructions
Tests
tests:
- text: <code>euler118()</code>应返回44680。
testString: assert.strictEqual(euler118(), 44680);
Challenge Seed
function euler118() {
// Good luck!
return true;
}
euler118();
Solution
// solution required