* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.5 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f3b61000cf542c50fec9 | 5 | Problem 74: Digit factorial chains | 
Description
Instructions
Tests
tests:
  - text: <code>euler74()</code> should return 402.
    testString: assert.strictEqual(euler74(), 402, '<code>euler74()</code> should return 402.');
Challenge Seed
function euler74() {
  // Good luck!
  return true;
}
euler74();
Solution
// solution required