freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-441-the-inverse-sum...

55 lines
740 B
Markdown
Raw Normal View History

---
id: 5900f5261000cf542c510038
challengeType: 5
title: 'Problem 441: The inverse summation of coprime couples'
videoUrl: ''
localeTitle: 'Задача 441: обратное суммирование взаимно простых пар'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler441(), 5000088.8395, "<code>euler441()</code> should return 5000088.8395.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler441() {
// Good luck!
return true;
}
euler441();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>