freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-395-pythagorean-tre...

622 B

id challengeType title videoUrl localeTitle
5900f4f71000cf542c51000a 5 Problem 395: Pythagorean tree

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler395();

Solution

// solution required