1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3b01000cf542c50fec2 | 5 | Problem 67: Maximum path sum II | 问题67:最大路径总和II | 
Description
Instructions
Tests
tests:
  - text: <code>euler67()</code>应该返回7273。
    testString: 'assert.strictEqual(euler67(), 7273, "<code>euler67()</code> should return 7273.");'
Challenge Seed
function euler67() {
  // Good luck!
  return true;
}
euler67();
Solution
// solution required