News

Repository files navigation Find Non Repeating Characters The string is a combination of characters when 2 or more characters join together it forms string whether the formation gives a meaningful or ...
```py # Function to find k'th non repeating character # in string from collections import OrderedDict def kthRepeating (input,k): # OrderedDict returns a dictionary data # structure having characters ...