* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			896 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			896 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f40d1000cf542c50ff1f | 5 | Problem 160: Factorial trailing digits | 
Description
Instructions
Tests
tests:
  - text: <code>euler160()</code> should return 16576.
    testString: assert.strictEqual(euler160(), 16576, '<code>euler160()</code> should return 16576.');
Challenge Seed
function euler160() {
  // Good luck!
  return true;
}
euler160();
Solution
// solution required