Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
		
			
				
	
	
	
		
			1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4aa1000cf542c50ffbc | 5 | false | Problem 317: Firecracker | 301973 | 
Description
We assume that the fragments move without air resistance, in a uniform gravitational field with g=9.81 m/s2.
Find the volume (in m3) of the region through which the fragments move before reaching the ground. Give your answer rounded to four decimal places.
Instructions
Tests
tests:
  - text: <code>euler317()</code> should return 1856532.8455.
    testString: assert.strictEqual(euler317(), 1856532.8455);
Challenge Seed
function euler317() {
  // Good luck!
  return true;
}
euler317();
Solution
// solution required