905 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			905 B
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3c11000cf542c50fed4 | 5 | Problem 85: Counting rectangles | 问题85:计算矩形 | 
Description
虽然不存在包含正好两百万个矩形的矩形网格,但是找到最近解的网格区域。
Instructions
Tests
tests:
  - text: <code>euler85()</code>应该返回2772。
    testString: 'assert.strictEqual(euler85(), 2772, "<code>euler85()</code> should return 2772.");'
Challenge Seed
function euler85() {
  // Good luck!
  return true;
}
euler85();
Solution
// solution required