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