--- id: 5900f43c1000cf542c50ff4e challengeType: 5 title: 'Problem 207: Integer partition equations' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler207(), 44043947822, "euler207() should return 44043947822.");' ```
## Challenge Seed
```js function euler207() { // Good luck! return true; } euler207(); ```
## Solution
```js // solution required ```