freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-214-totient-chains....

55 lines
620 B
Markdown

---
id: 5900f4421000cf542c50ff55
challengeType: 5
title: 'Problem 214: Totient Chains'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler214(), 1677366278943, "<code>euler214()</code> should return 1677366278943.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler214() {
// Good luck!
return true;
}
euler214();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>