freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-276-primitive-trian...

637 B

id challengeType title videoUrl localeTitle
5900f4801000cf542c50ff93 5 Problem 276: Primitive Triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler276();

Solution

// solution required