* 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.9 KiB
1.9 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3a81000cf542c50feba | 5 | Problem 59: XOR decryption | 问题59:XOR解密 |
Description
Instructions
Tests
tests:
- text: <code>euler59()</code>应返回107359。
testString: assert.strictEqual(euler59(), 107359);
Challenge Seed
function euler59() {
// Good luck!
return true;
}
euler59();
Solution
// solution required