freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-444-the-roundtable-...

55 lines
694 B
Markdown
Raw Normal View History

---
id: 5900f52a1000cf542c51003b
challengeType: 5
title: 'Problem 444: The Roundtable Lottery'
videoUrl: ''
localeTitle: 'Задача 444: Лотерея круглого стола'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler444(), 1.200856722e+263, "<code>euler444()</code> should return 1.200856722e+263.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler444() {
// Good luck!
return true;
}
euler444();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>