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

639 B

id challengeType title videoUrl localeTitle
5900f4021000cf542c50ff14 5 Problem 148: Exploring Pascal"s triangle

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler148(), 2129970655314432, "<code>euler148()</code> should return 2129970655314432.");'

Challenge Seed

function euler148() {
  // Good luck!
  return true;
}

euler148();

Solution

// solution required