--- id: 5900f4361000cf542c50ff48 challengeType: 5 title: 'Problem 201: Subsets with a unique sum' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler201(), 115039000, "euler201() should return 115039000.");' ```
## Challenge Seed
```js function euler201() { // Good luck! return true; } euler201(); ```
## Solution
```js // solution required ```