freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-185-number-mind.ara...

55 lines
623 B
Markdown

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