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

Aug 21, 2010

The answer should not be more than O(n)

3