3.5 KiB
3.5 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3a81000cf542c50feba | 5 | Problem 59: XOR decryption | 302170 | Проблема 59: Расшифровка XOR |
Description
Instructions
Tests
tests:
- text: <code>euler59()</code> should return 107359.
testString: assert.strictEqual(euler59(), 107359);
Challenge Seed
function euler59() {
// Good luck!
return true;
}
euler59();
Solution
// solution required