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

55 lines
619 B
Markdown
Raw Normal View History

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