JavaScript job interview question – Find first non repeated character in string
There are several way to code this puzzle. Some of them are time intensive and some of them are space intensive.I'll solve it here using javascript array (hash table in computer science term).
Sample Read more [...]