freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-364-comfortable-dis...

55 lines
616 B
Markdown

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