Files

39 lines
665 B
Markdown
Raw Permalink Normal View History

---
id: 5900f3fa1000cf542c50ff0d
title: '問題 142完全平方數合集'
challengeType: 5
forumTopicId: 301771
dashedName: 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`
```js
assert.strictEqual(perfectSquareCollection(), 1006193);
```
# --seed--
## --seed-contents--
```js
function perfectSquareCollection() {
return true;
}
perfectSquareCollection();
```
# --solutions--
```js
// solution required
```