1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f43f1000cf542c50ff51 | 5 | Problem 208: Robot Walks | 问题208:机器人走路 | 
Description
从北向南开始的70932条可能的闭合路径之一是
鉴于机器人开始面向北方,在最终弧线之后,可以将多少70个弧长的行程返回到其起始位置? (任何弧都可以多次遍历。)
Instructions
Tests
tests:
  - text: <code>euler208()</code>应该返回331951449665644800。
    testString: 'assert.strictEqual(euler208(), 331951449665644800, "<code>euler208()</code> should return 331951449665644800.");'
Challenge Seed
function euler208() {
  // Good luck!
  return true;
}
euler208();
Solution
// solution required