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