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.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f3dd1000cf542c50feef | 5 | false | Problem 112: Bouncy numbers | 301738 | 
Description
Instructions
Tests
tests:
  - text: <code>euler112()</code> should return 1587000.
    testString: assert.strictEqual(euler112(), 1587000);
Challenge Seed
function euler112() {
  // Good luck!
  return true;
}
euler112();
Solution
// solution required