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