search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1023 B
1023 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f5271000cf542c510039 | 5 | Problem 442: Eleven-free integers | 问题442:十一个整数 |
Description
例如,2404和13431不包含11,而911和4121331不是。
令E(n)为第n个正十一无整数。 例如,E(3)= 3,E(200)= 213和E(500’000)= 531563。
找出E(1018)。
Instructions
Tests
tests:
- text: <code>euler442()</code>应该返回1295552661530920200。
testString: assert.strictEqual(euler442(), 1295552661530920200);
Challenge Seed
function euler442() {
// Good luck!
return true;
}
euler442();
Solution
// solution required
/section>