2021-06-15 00:49:18 -07:00
---
id: 5900f3fa1000cf542c50ff0d
2022-02-28 13:29:21 +05:30
title: 'Problema 142: Collezione Quadrata Perfetta'
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 301771
dashedName: problem-142-perfect-square-collection
---
# --description--
2022-02-28 13:29:21 +05:30
Trova il più piccolo $x + y + z$ con interi $x > y > z > 0$ in modo che $x + y$, $x − y$, $x + z$, $x − z$, $y + z$, $y − z$ siano tutti quadrati perfetti.
2021-06-15 00:49:18 -07:00
# --hints--
2022-02-28 13:29:21 +05:30
`perfectSquareCollection()` dovrebbe restituire `1006193` .
2021-06-15 00:49:18 -07:00
```js
2022-02-28 13:29:21 +05:30
assert.strictEqual(perfectSquareCollection(), 1006193);
2021-06-15 00:49:18 -07:00
```
# --seed--
## --seed-contents--
```js
2022-02-28 13:29:21 +05:30
function perfectSquareCollection() {
2021-06-15 00:49:18 -07:00
return true;
}
2022-02-28 13:29:21 +05:30
perfectSquareCollection();
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
// solution required
```