--- id: 5900f5081000cf542c510019 challengeType: 5 title: 'Problem 411: Uphill paths' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler411(), 9936352, "euler411() should return 9936352.");' ```
## Challenge Seed
```js function euler411() { // Good luck! return true; } euler411(); ```
## Solution
```js // solution required ```