freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-141-investigating-p...

55 lines
663 B
Markdown

---
id: 5900f3f91000cf542c50ff0b
challengeType: 5
title: 'Problem 141: Investigating progressive numbers, n, which are also square'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler141(), 878454337159, "<code>euler141()</code> should return 878454337159.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler141() {
// Good luck!
return true;
}
euler141();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>