Files
freeCodeCamp/curriculum/challenges/espanol/10-coding-interview-prep/project-euler/problem-142-perfect-square-collection.md
2021-02-07 14:08:31 +05:30

39 lines
580 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f3fa1000cf542c50ff0d
title: 'Problem 142: Perfect Square Collection'
challengeType: 5
forumTopicId: 301771
dashedName: 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--
`euler142()` should return 1006193.
```js
assert.strictEqual(euler142(), 1006193);
```
# --seed--
## --seed-contents--
```js
function euler142() {
return true;
}
euler142();
```
# --solutions--
```js
// solution required
```