1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f5471000cf542c510059 | 5 | Problem 474: Last digits of divisors | المشكلة 474: آخر أرقام من المقسومات | 
Description
يمكننا أيضًا التحقق من F (12! ، 12) = 11 و F (50! ، 123) = 17888.
البحث عن F (106! ، 65432) modulo (1016 + 61).
Instructions
Tests
tests:
  - text: يجب أن <code>euler474()</code> 9690646731515010.
    testString: 'assert.strictEqual(euler474(), 9690646731515010, "<code>euler474()</code> should return 9690646731515010.");'
Challenge Seed
function euler474() {
  // Good luck!
  return true;
}
euler474();
Solution
// solution required