freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-409-nim-extreme.ara...

609 B

id challengeType title videoUrl localeTitle
5900f5061000cf542c510017 5 Problem 409: Nim Extreme

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler409(), 253223948, "<code>euler409()</code> should return 253223948.");'

Challenge Seed

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

euler409();

Solution

// solution required