freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-92-square-digit-cha...

55 lines
608 B
Markdown
Raw Normal View History

---
id: 5900f3c81000cf542c50fedb
challengeType: 5
title: 'Problem 92: Square digit chains'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler92(), 8581146, "<code>euler92()</code> should return 8581146.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler92() {
// Good luck!
return true;
}
euler92();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>