* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4941000cf542c50ffa7 | 5 | Problem 296: Angular Bisector and Tangent | 
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, '<code>euler296()</code> should return 1137208419.');
Challenge Seed
function euler296() {
  // Good luck!
  return true;
}
euler296();
Solution
// solution required