--- id: 5900f4e41000cf542c50fff5 challengeType: 5 title: 'Problem 375: Minimum of subsequences' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler375(), 7435327983715286000, "euler375() should return 7435327983715286000.");' ```
## Challenge Seed
```js function euler375() { // Good luck! return true; } euler375(); ```
## Solution
```js // solution required ```