--- id: 5900f4021000cf542c50ff14 challengeType: 5 title: 'Problem 148: Exploring Pascal"s triangle' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler148(), 2129970655314432, "euler148() should return 2129970655314432.");' ```
## Challenge Seed
```js function euler148() { // Good luck! return true; } euler148(); ```
## Solution
```js // solution required ```