freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-152-writing-one-hal...

55 lines
670 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: 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>