Problem of the day
The first and the only line consists of a string of length n containing lowercase alphabets.
You need to print the length of the longest unique characters substring.
1<= n <=10^5
Time Limit: 1 sec
abcabcbb
3
Substring "abc" has no repeating character with the length of 3.
aaaa
1