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