How can I find distinct repetitive character in string using Java.
For the string 4567895443577
Here, the first distinct repetitive character is 5
Ip:n:1 output:4
n=2 op=5
n=3 op=7
n=4 op=doest exist
|
|
This can be done by the following code. I have used HashMap keys as an input characters and value as a counter.
|
||||
|
|
|
create complexity: O(n)
|
||||
|
|
|
This should work:
|
|||||||||||
|
|
You should create a
|
|||
|
|