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

624 B

id challengeType title videoUrl localeTitle
5900f4071000cf542c50ff19 5 Problem 154: Exploring Pascal"s pyramid

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler154();

Solution

// solution required