freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-283-integer-sided-t...

686 B

id challengeType title videoUrl localeTitle
5900f4881000cf542c50ff9a 5 Problem 283: Integer sided triangles for which the area * perimeter ratio is integral

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler283();

Solution

// solution required