1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4c21000cf542c50ffd4 | 5 | Problem 340: Crazy Function | Problema 340: función loca | 
Description
Además, define S (a, b, c) =.
Por ejemplo, si a = 50, b = 2000 y c = 40, entonces F (0) = 3240 y F (2000) = 2040. También, S (50, 2000, 40) = 5204240.
Encuentra los últimos 9 dígitos de S (217, 721, 127).
Instructions
Tests
tests:
  - text: <code>euler340()</code> debe devolver 291504964.
    testString: 'assert.strictEqual(euler340(), 291504964, "<code>euler340()</code> should return 291504964.");'
Challenge Seed
function euler340() {
  // Good luck!
  return true;
}
euler340();
Solution
// solution required