--- id: 5900f4201000cf542c50ff33 challengeType: 5 title: 'Problem 180: Rational zeros of a function of three variables' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler180(), 285196020571078980, "euler180() should return 285196020571078980.");' ```
## Challenge Seed
```js function euler180() { // Good luck! return true; } euler180(); ```
## Solution
```js // solution required ```