Skip to content
Advertisement

Find unique character in a string ? What is wrong in logic . I’m unable to find error

I am trying to find characters that occur exactly once in a string, where the string contains only letters.

Here’s my code:

JavaScript

I’m getting a StringIndexOutOfBoundsException.

What am I doing wrong?

Advertisement

Answer

Try and initialize counter inside the first loop (Or since its not being used outside the loop, shift the declaration). The way you are initializing it (once) for the entire program will keep on increasing the value even when you move to the next character. Also, since you are testing using 1, change the inner loop initialization to 0 and the condition to j (its currently i)

JavaScript

Also, its a good idea to change the input to a uniform casing. The current setup will treat A and a as different, unless thats the requirement (in which case you should ignore the toLowerCase).

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement