freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-250-250250.arabic.md

55 lines
618 B
Markdown

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