--- id: 5900f3d61000cf542c50fee7 challengeType: 5 title: 'Problem 103: Special subset sums: optimum' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler103(), 20313839404245, "euler103() should return 20313839404245.");' ```
## Challenge Seed
```js function euler103() { // Good luck! return true; } euler103(); ```
## Solution
```js // solution required ```