Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-152-writing-one-half-as-a-sum-of-inverse-squares.chinese.md

55 lines
670 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: 5900f4041000cf542c50ff17
challengeType: 5
title: 'Problem 152: Writing one half as a sum of inverse squares'
videoUrl: ''
localeTitle: 问题152将一半写为倒数平方和
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler152(), 301, "<code>euler152()</code> should return 301.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler152() {
// Good luck!
return true;
}
euler152();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>