Given a string s, find the length of the longest substring without repeating characters.
s = "abcabcbb"
3
The answer is "abc", with the length of 3.
nums = [2,7,11,15], target = 9
[0,1]