665 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			665 B
		
	
	
	
	
	
	
	
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName | 
|---|---|---|---|---|
| 5900f3fa1000cf542c50ff0d | 問題 142:完全平方數合集 | 5 | 301771 | problem-142-perfect-square-collection | 
--description--
請找出最小的 $x + y + z$,其中整數 x > y > z > 0 需要滿足 $x + y$、$x − y$、$x + z$、$x − z$、$y + z$、y − z 均爲完全平方數。
--hints--
perfectSquareCollection() 應該返回 1006193。
assert.strictEqual(perfectSquareCollection(), 1006193);
--seed--
--seed-contents--
function perfectSquareCollection() {
  return true;
}
perfectSquareCollection();
--solutions--
// solution required