freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-292-pythagorean-pol...

620 B

id challengeType title videoUrl localeTitle
5900f4911000cf542c50ffa3 5 Problem 292: Pythagorean Polygons

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler292();

Solution

// solution required