First Non Repeated Character in String
The question
Find the first non-repeated (unique) character in a given string.
My answer
At first glance I am tempted to start from the left and add each character go to a hashtable with the number of times I have seen it. Once I have gone through the whole string I will do it again now searching for the first character that returns 1.