freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-121-disc-game-prize...

608 B

id challengeType title videoUrl localeTitle
5900f3e51000cf542c50fef8 5 Problem 121: Disc game prize fund

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler121();

Solution

// solution required