freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-471-triangle-inscri...

668 B

id challengeType title videoUrl localeTitle
5900f5431000cf542c510056 5 Problem 471: Triangle inscribed in ellipse

Description

undefined

Instructions

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler471(), 1.895093981e+31, "<code>euler471()</code> should return 1.895093981e+31.");'

Challenge Seed

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

euler471();

Solution

// solution required