mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-28 14:01:32 -05:00
658 B
658 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f3fa1000cf542c50ff0d | Problem 142: Perfect Square Collection | 1 | 301771 | problem-142-perfect-square-collection |
--description--
Find the smallest x + y + z with integers x > y > z > 0 such that x + y, x − y, x + z, x − z, y + z, y − z are all perfect squares.
--hints--
perfectSquareCollection() should return 1006193.
assert.strictEqual(perfectSquareCollection(), 1006193);
--seed--
--seed-contents--
function perfectSquareCollection() {
return true;
}
perfectSquareCollection();
--solutions--
// solution required