freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-296-angular-bisecto...

1.1 KiB

id challengeType title videoUrl localeTitle
5900f4941000cf542c50ffa7 5 Problem 296: Angular Bisector and Tangent Problema 296: Bissetriz Angular e Tangente

Description

Dado é um triângulo de lados inteiros ABC com BC ≤ AC ≤ AB.k é a bissetriz angular de ângulo ACB.m é a tangente em C ao círculo circunscrito de ABC.n é uma linha paralela a m até B. A intersecção de n ek é chamado E.

Quantos triângulos ABC com perímetro não superior a 100.000 existem de tal forma que BE possui comprimento integral?

Instructions

Tests

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

Challenge Seed

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

euler296();

Solution

// solution required