freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-284-steady-squares....

55 lines
610 B
Markdown

---
id: 5900f4891000cf542c50ff9b
challengeType: 5
title: 'Problem 284: Steady Squares'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler284(), 5a411d7b, "<code>euler284()</code> should return 5a411d7b.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler284() {
// Good luck!
return true;
}
euler284();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>