How would you find the first non repeating character in a string?
Sigiloso
My answer was to go through the string adding the characters to a hash and updating the value. Then going through the string again and checking the characters. The first key that has value 1 is the first non repeating character