--- id: 5900f4d31000cf542c50ffe6 challengeType: 5 title: 'Problem 359: Hilbert"s New Hotel' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler359(), 40632119, "euler359() should return 40632119.");' ```
## Challenge Seed
```js function euler359() { // Good luck! return true; } euler359(); ```
## Solution
```js // solution required ```