search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
978 B
978 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3ba1000cf542c50fecd | 5 | Problem 78: Coin partitions | 问题78:硬币分区 |
Description
OOOOO OOOO O OOO OO OOO O O OO OO O O O O O O O O O O O O O O O O O O O O O O O O O
找到n的最小值,p(n)可以被一百万整除。
Instructions
Tests
tests:
- text: <code>euler78()</code>应返回55374。
testString: assert.strictEqual(euler78(), 55374);
Challenge Seed
function euler78() {
// Good luck!
return true;
}
euler78();
Solution
// solution required
/section>