1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3d21000cf542c50fee5 | 5 | Problem 102: Triangle containment | 301726 | 
Description
Instructions
Tests
tests:
  - text: <code>euler102()</code> should return 228.
    testString: assert.strictEqual(euler102(), 228);
Challenge Seed
function euler102() {
  // Good luck!
  return true;
}
euler102();
Solution
// solution required