--- id: 5900f4051000cf542c50ff18 challengeType: 5 title: 'Problem 153: Investigating Gaussian Integers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler153(), 17971254122360636, "euler153() should return 17971254122360636.");' ```
## Challenge Seed
```js function euler153() { // Good luck! return true; } euler153(); ```
## Solution
```js // solution required ```