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.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f3e61000cf542c50fef9 | 5 | false | Problem 122: Efficient exponentiation | 301749 | 
Description
Instructions
Tests
tests:
  - text: <code>euler122()</code> should return 1582.
    testString: assert.strictEqual(euler122(), 1582);
Challenge Seed
function euler122() {
  // Good luck!
  return true;
}
euler122();
Solution
// solution required