* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4b11000cf542c50ffc3 | 5 | Problem 324: Building a tower | 
Description
Find f(1010000) mod 100000007.
Instructions
Tests
tests:
  - text: <code>euler324()</code> should return 96972774.
    testString: assert.strictEqual(euler324(), 96972774, '<code>euler324()</code> should return 96972774.');
Challenge Seed
function euler324() {
  // Good luck!
  return true;
}
euler324();
Solution
// solution required