freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-63-powerful-digit-c...

55 lines
600 B
Markdown

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