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>
		
			
				
	
	
	
		
			1015 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			1015 B
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4151000cf542c50ff27 | 5 | false | Problem 168: Number Rotations | 301802 | 
Description
Instructions
Tests
tests:
  - text: <code>euler168()</code> should return 59206.
    testString: assert.strictEqual(euler168(), 59206);
Challenge Seed
function euler168() {
  // Good luck!
  return true;
}
euler168();
Solution
// solution required