![]() |
VOOZH | about |
Given a number N, the task is to count the number of unique digits in the given number.
Examples:
Input: N = 22342
Output: 2
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:
Below is the implementation of the above approach:
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.