Given a string `s`, find the **length** of the longest substring without repeating characters. Use a sliding window over the string and a hash/set to track unique characters.
s = input string
integer (length of longest substring without repeating characters)
Example 1:
Input:
s = "geeksforgeeks"
Output:
7
Example 2:
Input:
s = "bbbbb"
Output:
1