* 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 |
---|---|---|---|---|
5900f39f1000cf542c50feb2 | 5 | Problem 51: Prime digit replacements | 问题51:主要数字替换 |
Description
Instructions
Tests
tests:
- text: <code>euler51()</code>应返回121313。
testString: assert.strictEqual(euler51(), 121313);
Challenge Seed
function euler51() {
// Good luck!
return true;
}
euler51();
Solution
// solution required