freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-218-perfect-right-a...

612 B

id challengeType title videoUrl localeTitle
5900f4461000cf542c50ff59 5 Problem 218: Perfect right-angled triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler218();

Solution

// solution required