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.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f40e1000cf542c50ff21 | 5 | false | Problem 162: Hexadecimal numbers | 301796 | 
Description
Instructions
Tests
tests:
  - text: <code>euler162()</code> should return 3D58725572C62302.
    testString: assert.strictEqual(euler162(), '3D58725572C62302');
Challenge Seed
function euler162() {
  // Good luck!
  return true;
}
euler162();
Solution
// solution required