Problem: Longest Substring Without Repeating Characters

Posted by Marcy on February 18, 2015

Question

Given a string, find the length of the longest substring without repeating characters.

Examples:

Given "abcabcbb", the answer is "abc", which the length is 3.

Given "bbbbb", the answer is "b", with the length of 1.

Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.

Solution

TODO

Code

class Solution {
    public int lengthOfLongestSubstring(String s) {
        Set<Character> set = new HashSet<>();
        int max = 0;
        for(int i=0; i<s.length(); i++) {
            char c = s.charAt(i);
            while(set.contains(c)) set.remove(s.charAt(i-set.size()));
            set.add(c);
            max = Math.max(max, set.size());
        }

        return max;
    }
}

Performance

TODO