Interra Systems interview question

write an progrm to find the first non- repeated element in a string. For example, if string is "Interra" return 'I'. The program should take into consideration the time complexity.

Interview Answer

Anonymous

21 Aug 2010

The answer should not be more than O(n)

3