Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-296-angular-bisector-and-tangent.md
Oliver Eyton-Williams ee1e8abd87 feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

43 lines
793 B
Markdown

---
id: 5900f4941000cf542c50ffa7
title: 'Problem 296: Angular Bisector and Tangent'
challengeType: 5
forumTopicId: 301948
dashedName: problem-296-angular-bisector-and-tangent
---
# --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?
# --hints--
`euler296()` should return 1137208419.
```js
assert.strictEqual(euler296(), 1137208419);
```
# --seed--
## --seed-contents--
```js
function euler296() {
return true;
}
euler296();
```
# --solutions--
```js
// solution required
```