1.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.5 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