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

694 B

id challengeType title videoUrl localeTitle
5900f52a1000cf542c51003b 5 Problem 444: The Roundtable Lottery Задача 444: Лотерея круглого стола

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler444(), 1.200856722e+263, "<code>euler444()</code> should return 1.200856722e+263.");'

Challenge Seed

function euler444() {
  // Good luck!
  return true;
}

euler444();

Solution

// solution required