freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-250-250250.md

22 lines
389 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4661000cf542c50ff78
title: 问题250250250
challengeType: 5
videoUrl: ''
---
# --description--
找到{11,22,33...250250250250}的非空子集的数量其元素的总和可被250整除。输入最右边的16位作为答案。
# --hints--
`euler250()`应该返回1425480602091519。
```js
assert.strictEqual(euler250(), 1425480602091519);
```
# --solutions--