freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-156-counting-digits...

55 lines
623 B
Markdown

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