freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-344-silver-dollar-g...

620 B

id challengeType title videoUrl localeTitle
5900f4c51000cf542c50ffd7 5 Problem 344: Silver dollar game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler344();

Solution

// solution required