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

623 B

id challengeType title videoUrl localeTitle
5900f4091000cf542c50ff1b 5 Problem 156: Counting Digits

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler156(), 21295121502550, "<code>euler156()</code> should return 21295121502550.");'

Challenge Seed

function euler156() {
  // Good luck!
  return true;
}

euler156();

Solution

// solution required