--- id: 5900f43f1000cf542c50ff51 challengeType: 5 title: 'Problem 208: Robot Walks' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler208(), 331951449665644800, "euler208() should return 331951449665644800.");' ```
## Challenge Seed
```js function euler208() { // Good luck! return true; } euler208(); ```
## Solution
```js // solution required ```