* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			902 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			902 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4111000cf542c50ff23 | 5 | Problem 164: Numbers for which no three consecutive digits have a sum greater than a given value | 
Description
Instructions
Tests
tests:
  - text: <code>euler164()</code> should return 378158756814587.
    testString: assert.strictEqual(euler164(), 378158756814587, '<code>euler164()</code> should return 378158756814587.');
Challenge Seed
function euler164() {
  // Good luck!
  return true;
}
euler164();
Solution
// solution required