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