1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4ca1000cf542c50ffdc | 5 | Problem 349: Langton"s ant | 问题349:兰顿的蚂蚁 | 
Description
从一个完全是白色的网格开始,在蚂蚁1018次移动后,有多少个方块是黑色的?
Instructions
Tests
tests:
  - text: <code>euler349()</code>应该返回115384615384614940。
    testString: 'assert.strictEqual(euler349(), 115384615384614940, "<code>euler349()</code> should return 115384615384614940.");'
Challenge Seed
function euler349() {
  // Good luck!
  return true;
}
euler349();
Solution
// solution required