Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Count Repeated Numbers in a Range

HardPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Count Repeated Numbers in a Range. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

For an EPAM Systems QA validation utility, implement a function that counts how many times the digit 8 appears when writing every integer in an inclusive range from start to end. Count repeated occurrences within the same number separately. For example, 88 contributes two occurrences.

Your solution must avoid enumerating every number in the range. Use positional digit counting so that the algorithm remains efficient when the range contains very large values.

Formal Specification

Implement count_eights(start, end).

  • Input: Two non-negative integers, start and end, where start <= end.
  • Output: An integer representing the total number of digit 8 occurrences in all numbers from start through end, inclusive.
  • Leading zeros are not written and must not be counted.

Constraints

  • 0 <= start <= end <= 10^18
  • The range may contain too many values for direct iteration
  • Only the digit 8 is counted
  • Numbers are written without leading zeros

Function Signature

def count_eights(start, end):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output