search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
		
			
				
	
	
	
		
			1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4371000cf542c50ff49 | 5 | Problem 202: Laserbeam | 问题202:Laserbeam | 
Description
标记顶点A,B和C.有两种方式可以使激光束进入顶点C,从11个表面反弹,然后通过相同的顶点退出:下面显示了一种方式;另一方面与此相反。
有80840种方式,激光束可以进入顶点C,从1000001表面反弹,然后通过相同的顶点退出。
激光束在顶点C进入的方式有多少,从12017639147表面反弹,然后通过相同的顶点退出?
Instructions
Tests
tests:
  - text: <code>euler202()</code>应返回1209002624。
    testString: assert.strictEqual(euler202(), 1209002624);
Challenge Seed
function euler202() {
  // Good luck!
  return true;
}
euler202();
Solution
// solution required
/section>