Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4941000cf542c50ffa7 | 5 | false | Problem 296: Angular Bisector and Tangent | 301948 | 
Description
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