freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-447-retractions-c.r...

55 lines
649 B
Markdown
Raw Normal View History

---
id: 5900f52c1000cf542c51003e
challengeType: 5
title: 'Problem 447: Retractions C'
videoUrl: ''
localeTitle: 'Задача 447: Ретракции C'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler447(), 530553372, "<code>euler447()</code> should return 530553372.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler447() {
// Good luck!
return true;
}
euler447();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>