search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f4be1000cf542c50ffd0 | 5 | Problem 337: Totient Stairstep Sequences | 问题337欧拉序列阶梯 |
Description
找到S(20 000 000)mod 108。
1φ表示欧拉的函数。
Instructions
Tests
tests:
- text: <code>euler337()</code>应该返回85068035。
testString: assert.strictEqual(euler337(), 85068035);
Challenge Seed
function euler337() {
// Good luck!
return true;
}
euler337();
Solution
// solution required
/section>