freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-301-nim.arabic.md

597 B

id challengeType title videoUrl localeTitle
5900f4991000cf542c50ffab 5 Problem 301: Nim

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler301();

Solution

// solution required