1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4241000cf542c50ff37 | 5 | Problem 184: Triangles containing the origin | 问题184:包含原点的三角形 | 
Description
对于半径为3,有360个三角形包含内部的原点并且所有顶点都在I3中,而对于I5,该数字是10600。
有多少个三角形包含内部的原点并且在I105中包含所有三个顶点?
Instructions
Tests
tests:
  - text: <code>euler184()</code>应返回1725323624056。
    testString: 'assert.strictEqual(euler184(), 1725323624056, "<code>euler184()</code> should return 1725323624056.");'
Challenge Seed
function euler184() {
  // Good luck!
  return true;
}
euler184();
Solution
// solution required