1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3cc1000cf542c50fede | 5 | Problem 95: Amicable chains | 问题95:友好的链条 | 
Description
Instructions
Tests
tests:
  - text: <code>euler95()</code>应返回14316。
    testString: 'assert.strictEqual(euler95(), 14316, "<code>euler95()</code> should return 14316.");'
Challenge Seed
function euler95() {
  // Good luck!
  return true;
}
euler95();
Solution
// solution required