--- id: 5900f42b1000cf542c50ff3d challengeType: 5 title: 'Problem 190: Maximising a weighted product' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler190(), 371048281, "euler190() should return 371048281.");' ```
## Challenge Seed
```js function euler190() { // Good luck! return true; } euler190(); ```
## Solution
```js // solution required ```