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 | 
|---|---|---|---|---|
| 5900f4a21000cf542c50ffb5 | 5 | false | Problem 310: Nim Square | 301966 | 
Description
Find the number of losing positions for the next player if 0≤a≤b≤c≤100 000.
Instructions
Tests
tests:
  - text: <code>euler310()</code> should return 2586528661783.
    testString: assert.strictEqual(euler310(), 2586528661783);
Challenge Seed
function euler310() {
  // Good luck!
  return true;
}
euler310();
Solution
// solution required