--- id: 5900f3dd1000cf542c50feef challengeType: 5 title: 'Problem 112: Bouncy numbers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler112(), 1587000, "euler112() should return 1587000.");' ```
## Challenge Seed
```js function euler112() { // Good luck! return true; } euler112(); ```
## Solution
```js // solution required ```