1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3bb1000cf542c50fece | 5 | Problem 79: Passcode derivation | 302192 | 
Description
Instructions
Tests
tests:
  - text: <code>euler79()</code> should return 73162890.
    testString: assert.strictEqual(euler79(), 73162890);
Challenge Seed
function euler79() {
  // Good luck!
  return true;
}
euler79();
Solution
// solution required