freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-299-three-similar-t...

621 B

id challengeType title videoUrl localeTitle
5900f4971000cf542c50ffaa 5 Problem 299: Three similar triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler299();

Solution

// solution required