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