1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f5061000cf542c510017 | 5 | Problem 409: Nim Extreme | 302077 | 
Description
Find W(10 000 000) mod 1 000 000 007.
Instructions
Tests
tests:
  - text: <code>euler409()</code> should return 253223948.
    testString: assert.strictEqual(euler409(), 253223948);
Challenge Seed
function euler409() {
  // Good luck!
  return true;
}
euler409();
Solution
// solution required