1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3e01000cf542c50fef2 | 5 | Problem 114: Counting block combinations I | 问题114:计数块组合I | 
Description
一行可以测量多达50个长度的行数?注意:虽然上面的示例不适合这种可能性,但通常允许混合块大小。例如,在一个长度为8个单位的行上,您可以使用红色(3),黑色(1)和红色(4)。
Instructions
Tests
tests:
  - text: <code>euler114()</code>应该返回16475640049。
    testString: 'assert.strictEqual(euler114(), 16475640049, "<code>euler114()</code> should return 16475640049.");'
Challenge Seed
function euler114() {
  // Good luck!
  return true;
}
euler114();
Solution
// solution required