freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-148-exploring-pasca...

55 lines
639 B
Markdown
Raw Normal View History

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