freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-366-stone-game-iii....

669 B

id challengeType title videoUrl localeTitle
5900f4da1000cf542c50ffed 5 Problem 366: Stone Game III

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler366()</code> должен вернуть 88351299.
    testString: 'assert.strictEqual(euler366(), 88351299, "<code>euler366()</code> should return 88351299.");'

Challenge Seed

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

euler366();

Solution

// solution required