Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-250-250250.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

820 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4661000cf542c50ff78 5 Problem 250: 250250 问题250250250

Description

找到{11,22,33...250250250250}的非空子集的数量其元素的总和可被250整除。输入最右边的16位作为答案。

Instructions

Tests

tests:
  - text: <code>euler250()</code>应该返回1425480602091519。
    testString: assert.strictEqual(euler250(), 1425480602091519);

Challenge Seed

function euler250() {
  // Good luck!
  return true;
}

euler250();

Solution

// solution required

/section>