1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3e61000cf542c50fef9 | 5 | Problem 122: Efficient exponentiation | 问题122:有效取幂 | 
Description
Instructions
Tests
tests:
  - text: <code>euler122()</code>应返回1582。
    testString: 'assert.strictEqual(euler122(), 1582, "<code>euler122()</code> should return 1582.");'
Challenge Seed
function euler122() {
  // Good luck!
  return true;
}
euler122();
Solution
// solution required