fix: replace .chinese.md extension with .md

This commit is contained in:
Oliver Eyton-Williams
2020-09-29 19:06:51 +02:00
parent 2b9e38a17b
commit 41b7a33100
1588 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
---
id: 5900f4661000cf542c50ff78
challengeType: 5
title: 'Problem 250: 250250'
videoUrl: ''
localeTitle: 问题250250250
---
## Description
<section id="description">找到{11,22,33...250250250250}的非空子集的数量其元素的总和可被250整除。输入最右边的16位作为答案。 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler250()</code>应该返回1425480602091519。
testString: assert.strictEqual(euler250(), 1425480602091519);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler250() {
// Good luck!
return true;
}
euler250();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>