1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3bb1000cf542c50fece | 5 | Problem 79: Passcode derivation | 问题79:密码派生 | 
Description
Instructions
Tests
tests:
  - text: <code>euler79()</code>应该返回73162890。
    testString: 'assert.strictEqual(euler79(), 73162890, "<code>euler79()</code> should return 73162890.");'
Challenge Seed
function euler79() {
  // Good luck!
  return true;
}
euler79();
Solution
// solution required