994 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			994 B
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3b91000cf542c50fecc | 5 | Problem 77: Prime summations | Problema 77: sumas principales | 
Description
Instructions
Tests
tests:
  - text: <code>euler77()</code> debe devolver 71.
    testString: 'assert.strictEqual(euler77(), 71, "<code>euler77()</code> should return 71.");'
Challenge Seed
function euler77() {
  // Good luck!
  return true;
}
euler77();
Solution
// solution required