freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-109-darts.arabic.md

595 B

id challengeType title videoUrl localeTitle
5900f3db1000cf542c50feec 5 Problem 109: Darts

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler109();

Solution

// solution required