freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-83-path-sum-four-wa...

55 lines
606 B
Markdown

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