1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3b91000cf542c50fecc | 5 | Problem 77: Prime summations | Задача 77: Основные суммы | 
Description
Instructions
Tests
tests:
  - text: <code>euler77()</code> должен возвращать 71.
    testString: 'assert.strictEqual(euler77(), 71, "<code>euler77()</code> should return 71.");'
Challenge Seed
function euler77() {
  // Good luck!
  return true;
}
euler77();
Solution
// solution required