search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4de1000cf542c50fff1 | 5 | Problem 370: Geometric triangles | 问题370:几何三角形 | 
Description
这种几何三角形的一个例子是边长为a = 144,b = 156和c = 169的三角形。
有861805个几何三角形,周长≤106。
有多少个几何三角形,周长≤2.5·1013?
Instructions
Tests
tests:
  - text: <code>euler370()</code>应该返回41791929448408。
    testString: assert.strictEqual(euler370(), 41791929448408);
Challenge Seed
function euler370() {
  // Good luck!
  return true;
}
euler370();
Solution
// solution required
/section>