freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-390-triangles-with-...

657 B

id challengeType title videoUrl localeTitle
5900f4f21000cf542c510005 5 Problem 390: Triangles with non rational sides and integral area

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler390();

Solution

// solution required