freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-260-stone-game.arab...

608 B

id challengeType title videoUrl localeTitle
5900f4701000cf542c50ff83 5 Problem 260: Stone Game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler260();

Solution

// solution required