* 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
1006 B
1006 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4151000cf542c50ff27 | 5 | Problem 168: Number Rotations | 问题168:数字轮换 |
Description
Instructions
Tests
tests:
- text: <code>euler168()</code>应返回<code>euler168()</code> 。
testString: assert.strictEqual(euler168(), 59206);
Challenge Seed
function euler168() {
// Good luck!
return true;
}
euler168();
Solution
// solution required