freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-171-finding-numbers...

55 lines
672 B
Markdown

---
id: 5900f4181000cf542c50ff2a
challengeType: 5
title: 'Problem 171: Finding numbers for which the sum of the squares of the digits is a square'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler171(), 142989277, "<code>euler171()</code> should return 142989277.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler171() {
// Good luck!
return true;
}
euler171();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>