mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-13 16:04:36 -04:00
677 B
677 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f3fa1000cf542c50ff0d | Problema 142: Collezione Quadrata Perfetta | 1 | 301771 | problem-142-perfect-square-collection |
--description--
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.
--hints--
perfectSquareCollection() dovrebbe restituire 1006193.
assert.strictEqual(perfectSquareCollection(), 1006193);
--seed--
--seed-contents--
function perfectSquareCollection() {
return true;
}
perfectSquareCollection();
--solutions--
// solution required