1.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.5 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4241000cf542c50ff37 | 5 | Problem 184: Triangles containing the origin | Problema 184: Triángulos que contienen el origen. | 
Description
Para un radio de 3, hay 360 triángulos que contienen el origen en el interior y tienen todos los vértices en I3 y para I5 el número es 10600.
¿Cuántos triángulos hay que contengan el origen en el interior y tengan los tres vértices en I105?
Instructions
Tests
tests:
  - text: <code>euler184()</code> debe devolver 1725323624056.
    testString: 'assert.strictEqual(euler184(), 1725323624056, "<code>euler184()</code> should return 1725323624056.");'
Challenge Seed
function euler184() {
  // Good luck!
  return true;
}
euler184();
Solution
// solution required