1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3cc1000cf542c50fede | 5 | Problem 95: Amicable chains | 302212 | 
Description
Instructions
Tests
tests:
  - text: <code>euler95()</code> should return 14316.
    testString: assert.strictEqual(euler95(), 14316);
Challenge Seed
function euler95() {
  // Good luck!
  return true;
}
euler95();
Solution
// solution required