1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4941000cf542c50ffa7 | 5 | Problem 296: Angular Bisector and Tangent | Problema 296: Bisectriz angular y tangente | 
Description
¿Cuántos triángulos ABC con un perímetro que no exceda de 100 000 existen de modo que BE tenga una longitud integral?
Instructions
Tests
tests:
  - text: <code>euler296()</code> debe devolver 1137208419.
    testString: 'assert.strictEqual(euler296(), 1137208419, "<code>euler296()</code> should return 1137208419.");'
Challenge Seed
function euler296() {
  // Good luck!
  return true;
}
euler296();
Solution
// solution required