* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			887 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			887 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f44e1000cf542c50ff5f | 5 | Problem 224: Almost right-angled triangles II | 
Description
How many barely obtuse triangles are there with perimeter ≤ 75,000,000?
Instructions
Tests
tests:
  - text: <code>euler224()</code> should return 4137330.
    testString: assert.strictEqual(euler224(), 4137330, '<code>euler224()</code> should return 4137330.');
Challenge Seed
function euler224() {
  // Good luck!
  return true;
}
euler224();
Solution
// solution required