* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4551000cf542c50ff67 | 5 | Problem 232: The Race | 
Description
On each turn Player 2 selects the number, T, of coin tosses that maximises the probability of her winning.
What is the probability that Player 2 wins?
Give your answer rounded to eight decimal places in the form 0.abcdefgh .
Instructions
Tests
tests:
  - text: <code>euler232()</code> should return 0.83648556.
    testString: assert.strictEqual(euler232(), 0.83648556, '<code>euler232()</code> should return 0.83648556.');
Challenge Seed
function euler232() {
  // Good luck!
  return true;
}
euler232();
Solution
// solution required