1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3ae1000cf542c50fec1 | 5 | Problem 66: Diophantine equation | 问题66:丢番图方程 | 
Description
Instructions
Tests
tests:
  - text: <code>euler66()</code>应返回661。
    testString: 'assert.strictEqual(euler66(), 661, "<code>euler66()</code> should return 661.");'
Challenge Seed
function euler66() {
  // Good luck!
  return true;
}
euler66();
Solution
// solution required