freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-69-totient-maximum....

55 lines
648 B
Markdown

---
id: 5900f3b11000cf542c50fec4
challengeType: 5
title: 'Problem 69: Totient maximum'
videoUrl: ''
localeTitle: Проблема 69 крупнейшим Totient
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler69(), 510510, "<code>euler69()</code> should return 510510.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler69() {
// Good luck!
return true;
}
euler69();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>