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 | 
|---|---|---|---|---|
| 5900f3f31000cf542c50ff06 | 5 | false | Problem 135: Same differences | 301763 | 
Description
Instructions
Tests
tests:
  - text: <code>euler135()</code> should return 4989.
    testString: assert.strictEqual(euler135(), 4989);
Challenge Seed
function euler135() {
  // Good luck!
  return true;
}
euler135();
Solution
// solution required