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

55 lines
595 B
Markdown

---
id: 5900f3db1000cf542c50feec
challengeType: 5
title: 'Problem 109: Darts'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler109(), 38182, "<code>euler109()</code> should return 38182.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler109() {
// Good luck!
return true;
}
euler109();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>