--- id: 5900f3ba1000cf542c50fecd challengeType: 5 title: 'Problem 78: Coin partitions' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler78(), 55374, "euler78() should return 55374.");' ```
## Challenge Seed
```js function euler78() { // Good luck! return true; } euler78(); ```
## Solution
```js // solution required ```