1.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.5 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3b61000cf542c50fec9 | 5 | Problem 74: Digit factorial chains | 302187 | 
Description
Instructions
Tests
tests:
  - text: <code>euler74()</code> should return 402.
    testString: assert.strictEqual(euler74(), 402);
Challenge Seed
function euler74() {
  // Good luck!
  return true;
}
euler74();
Solution
// solution required