--- id: 5900f4331000cf542c50ff45 challengeType: 5 title: 'Problem 198: Ambiguous Numbers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler198(), 52374425, "euler198() should return 52374425.");' ```
## Challenge Seed
```js function euler198() { // Good luck! return true; } euler198(); ```
## Solution
```js // solution required ```