freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-195-inscribed-circl...

655 B

id challengeType title videoUrl localeTitle
5900f4311000cf542c50ff43 5 Problem 195: Inscribed circles of triangles with one angle of 60 degrees

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler195();

Solution

// solution required