--- id: 5900f38b1000cf542c50fe9e challengeType: 5 title: 'Problem 31: Coin sums' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(coinSums(50) == 451, "coinSums(50) should return 451.");' - text: '' testString: 'assert(coinSums(100) == 4563, "coinSums(100) should return 4563.");' - text: '' testString: 'assert(coinSums(150) == 21873, "coinSums(150) should return 21873.");' - text: '' testString: 'assert(coinSums(200) == 73682, "coinSums(200) should return 73682.");' ```
## Challenge Seed
```js function coinSums(n) { // Good luck! return n; } coinSums(200); ```
## Solution
```js // solution required ```