freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-247-squares-under-a...

55 lines
617 B
Markdown

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