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