3.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			3.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3a81000cf542c50feba | 5 | Problem 59: XOR decryption | المشكلة 59: فك XOR | 
Description
Instructions
Tests
tests:
  - text: يجب أن يقوم <code>euler59()</code> بإرجاع 107359.
    testString: 'assert.strictEqual(euler59(), 107359, "<code>euler59()</code> should return 107359.");'
Challenge Seed
function euler59() {
  // Good luck!
  return true;
}
euler59();
Solution
// solution required