freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-422-sequence-of-poi...

55 lines
718 B
Markdown
Raw Normal View History

---
id: 5900f5131000cf542c510025
challengeType: 5
title: 'Problem 422: Sequence of points on a hyperbola'
videoUrl: ''
localeTitle: 'Задача 422: Последовательность точек на гиперболе'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler422(), 92060460, "<code>euler422()</code> should return 92060460.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler422() {
// Good luck!
return true;
}
euler422();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>