* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4151000cf542c50ff27 | 5 | Problem 168: Number Rotations | 
Description
Instructions
Tests
tests:
  - text: <code>euler168()</code> should return 59206.
    testString: assert.strictEqual(euler168(), 59206, '<code>euler168()</code> should return 59206.');
Challenge Seed
function euler168() {
  // Good luck!
  return true;
}
euler168();
Solution
// solution required