VOOZH about

URL: https://www.geeksforgeeks.org/dsa/count-of-unique-digits-in-a-given-number-n/

⇱ Count of unique digits in a given number N - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Count of unique digits in a given number N

Last Updated : 15 Jul, 2025

Given a number N, the task is to count the number of unique digits in the given number.

Examples:

Input: N = 22342 
Output:
Explanation:
The digits 3 and 4 occurs only once. Hence, the output is 2.

Input: N = 99677 
Output: 1
Explanation:
The digit 6 occurs only once. Hence, the output is 1. 

Naive Approach: By this approach, the problem can be solved using two nested loops. In the first loop, traverse from the first digit of the number to the last, one by one. Then for each digit in the first loop, run a second loop and search if this digit is present anywhere else as well in the number. If no, then increase the required count by 1. In the end, print the calculated required count.
Time Complexity: O(L2
Auxiliary Space: O(1)
 

Efficient Approach: The idea is to use Hashing to store the frequency of the digits and then count the digits with a frequency equal to 1. Follow the steps below to solve the problem:
 

  1. Create a HashTable of size 10 for digits 0-9. Initially store each index as 0.
  2. Now for each digit of number N, increment the count of that index in the hashtable.
  3. Traverse the hashtable and count the indices that have value equal to 1.
  4. At the end, print/return this count.


Below is the implementation of the above approach:


Output:
3

Time Complexity: O(N), where N is the number of digits of the number.
Auxiliary Space: O(1)


Note: As the used hashtable is of size only 10, therefore its time and space complexity will be near to constant. Hence it is not counted in the above time and auxiliary space.
 

Comment