Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-296-angular-bisector-and-tangent.english.md
Oliver Eyton-Williams bd68b70f3d Feat: hide blocks not challenges (#39504)
* fix: remove isHidden flag from frontmatter

* fix: add isUpcomingChange

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

* feat: hide blocks not challenges

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
2020-09-03 15:07:40 -07:00

1010 B

id, challengeType, title, forumTopicId
id challengeType title forumTopicId
5900f4941000cf542c50ffa7 5 Problem 296: Angular Bisector and Tangent 301948

Description

Given is an integer sided triangle ABC with BC ≤ AC ≤ AB.k is the angular bisector of angle ACB.m is the tangent at C to the circumscribed circle of ABC.n is a line parallel to m through B. The intersection of n and k is called E.

How many triangles ABC with a perimeter not exceeding 100 000 exist such that BE has integral length?

Instructions

Tests

tests:
  - text: <code>euler296()</code> should return 1137208419.
    testString: assert.strictEqual(euler296(), 1137208419);

Challenge Seed

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

euler296();

Solution

// solution required