freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-80-square-root-digi...

55 lines
614 B
Markdown
Raw Normal View History

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