1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3ca1000cf542c50fedd | 5 | Problem 94: Almost equilateral triangles | 302211 | 
Description
Instructions
Tests
tests:
  - text: <code>euler94()</code> should return 518408346.
    testString: assert.strictEqual(euler94(), 518408346);
Challenge Seed
function euler94() {
  // Good luck!
  return true;
}
euler94();
Solution
// solution required