--- id: 5900f3e01000cf542c50fef2 challengeType: 5 title: 'Problem 114: Counting block combinations I' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler114(), 16475640049, "euler114() should return 16475640049.");' ```
## Challenge Seed
```js function euler114() { // Good luck! return true; } euler114(); ```
## Solution
```js // solution required ```