* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			911 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			911 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f3b81000cf542c50fecb | 5 | Problem 76: Counting summations | 
Description
Instructions
Tests
tests:
  - text: <code>euler76()</code> should return 190569291.
    testString: assert.strictEqual(euler76(), 190569291, '<code>euler76()</code> should return 190569291.');
Challenge Seed
function euler76() {
  // Good luck!
  return true;
}
euler76();
Solution
// solution required