freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-91-right-triangles-...

625 B

id challengeType title videoUrl localeTitle
5900f3c71000cf542c50feda 5 Problem 91: Right triangles with integer coordinates

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler91();

Solution

// solution required