* 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
862 B
862 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f51e1000cf542c510030 | 5 | Problem 432: Totient sum | 问题432欧拉 |
Description
找出S(510510,1011)。 输入答案的最后9位数字。
Instructions
Tests
tests:
- text: <code>euler432()</code>应该返回754862080。
testString: assert.strictEqual(euler432(), 754862080);
Challenge Seed
function euler432() {
// Good luck!
return true;
}
euler432();
Solution
// solution required