freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-285-pythagorean-odd...

620 B

id challengeType title videoUrl localeTitle
5900f48a1000cf542c50ff9c 5 Problem 285: Pythagorean odds

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler285();

Solution

// solution required