freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-39-integer-right-tr...

1.0 KiB

id challengeType title videoUrl localeTitle
5900f3931000cf542c50fea6 5 Problem 39: Integer right triangles

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(intRightTriangles(500) == 420, "<code>intRightTriangles(500)</code> should return 420.");'
  - text: ''
    testString: 'assert(intRightTriangles(800) == 420, "<code>intRightTriangles(800)</code> should return 420.");'
  - text: ''
    testString: 'assert(intRightTriangles(900) == 840, "<code>intRightTriangles(900)</code> should return 840.");'
  - text: ''
    testString: 'assert(intRightTriangles(1000) == 840, "<code>intRightTriangles(1000)</code> should return 840.");'

Challenge Seed

function intRightTriangles(n) {
  // Good luck!
  return n;
}

intRightTriangles(1000);

Solution

// solution required