* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			933 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			933 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4571000cf542c50ff6a | 5 | Problem 235: An Arithmetic Geometric sequence | 
Description
Find the value of r for which s(5000) = -600,000,000,000.
Give your answer rounded to 12 places behind the decimal point.
Instructions
Tests
tests:
  - text: <code>euler235()</code> should return 1.002322108633.
    testString: assert.strictEqual(euler235(), 1.002322108633, '<code>euler235()</code> should return 1.002322108633.');
Challenge Seed
function euler235() {
  // Good luck!
  return true;
}
euler235();
Solution
// solution required