--- id: 5900f4b31000cf542c50ffc6 challengeType: 5 title: 'Problem 327: Rooms of Doom' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler327(), 34315549139516, "euler327() should return 34315549139516.");' ```
## Challenge Seed
```js function euler327() { // Good luck! return true; } euler327(); ```
## Solution
```js // solution required ```