Given a string s, find the length of the longest substring without repeating characters.
A substring is a contiguous non-empty sequence of characters within a string.
s = "abcabcbb"3s = "bbbbb"1s = "pwwkew"30 <= s.length <= 5 * 10^4s consists of English letters, digits, symbols and spaces.Click "Run" to execute your code against test cases
Socratic guidance - I'll ask questions, not give answers