Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-136-singleton-difference.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

57 lines
992 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f3f51000cf542c50ff07
challengeType: 5
title: 'Problem 136: Singleton difference'
videoUrl: ''
localeTitle: 问题136单身人士差异
---
## Description
<section id="description">正整数xy和z是算术级数的连续项。假设n是一个正整数当n = 20时方程x2 - y2 - z2 = n恰好有一个解132 - 102 - 72 = 20实际上有二十五个n低于一百的值其中方程有一个独特的解决方案。 n小于五千万的有多少个值只有一个解 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler136()</code>应返回2544559。
testString: assert.strictEqual(euler136(), 2544559);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler136() {
// Good luck!
return true;
}
euler136();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>