Given string *s*, find length of the longest substring without repeating characters. (Sliding-window with hash set).
One line string s.
Length as integer.
Example 1:
Input:
s = "abcabcbb"
Output:
3
Explanation:
Longest substring without repeating is "abc" of length 3.