I have a following problem here: I need to find out the length of the longest substring of unique characters.
like, I have a string thequickbrownfoxjumpsoveralazydog
and I expect to get 14
(the length of thequickbrownf
)
I found many topics over here related to the subject but I don't seem to be able to translate those solutions (where available) into Javascript.
Would you, guys, help me out with that? Thanks a million in advance!