* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			876 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			876 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f41f1000cf542c50ff32 | 5 | Problem 179: Consecutive positive divisors | 
Description
Instructions
Tests
tests:
  - text: <code>euler179()</code> should return 986262.
    testString: assert.strictEqual(euler179(), 986262, '<code>euler179()</code> should return 986262.');
Challenge Seed
function euler179() {
  // Good luck!
  return true;
}
euler179();
Solution
// solution required