--- id: 5900f4e81000cf542c50fffb challengeType: 5 title: 'Problem 380: Amazing Mazes!' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler380(), Infinity, "euler380() should return Infinity.");' ```
## Challenge Seed
```js function euler380() { // Good luck! return true; } euler380(); ```
## Solution
```js // solution required ```