freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-432-totient-sum.rus...

55 lines
700 B
Markdown

---
id: 5900f51e1000cf542c510030
challengeType: 5
title: 'Problem 432: Totient sum'
videoUrl: ''
localeTitle: Задача 432 в Totient
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler432()</code> должен возвращать 754862080.
testString: 'assert.strictEqual(euler432(), 754862080, "<code>euler432()</code> should return 754862080.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler432() {
// Good luck!
return true;
}
euler432();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>