3. Longest Substring Without Repeating Characters - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

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

A substring is a contiguous sequence of characters within a string. The goal is to find a substring where no character appears more than once, and then return its length.

Examples

Example 1

  • Input: s = "abcabcbb"
  • Output: 3
  • Explanation: The answer is "abc", with the length of 3.

Example 2

  • Input: s = "bbbbb"
  • Output: 1
  • Explanation: The answer is "b", with the length of 1.

Example 3

  • Input: s = "pwwkew"
  • Output: 3
  • Explanation: The answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a valid substring.

Approach

The most efficient approach to solve this problem is by using the Sliding Window technique along with a hash map or a set. This method allows us to maintain a window of characters that are unique and adjust the window dynamically as we iterate over the string.

Steps of the Sliding Window Technique

  1. Initialize two pointers:

    • Use two pointers, left and right, both starting at the beginning of the string.
  2. Expand the window:

    • Move the right pointer to the right, adding characters to the current window.
    • Use a hash map (or set) to keep track of the characters and their indices in the current window.
  3. Detect and handle duplicates:

    • If a character is encountered that is already in the current window (i.e., it exists in the hash map with an index that is within the current window), adjust the left pointer:
      • Move left to one position right of the previous occurrence of that character. This ensures that the window contains only unique characters.
  4. Update the maximum length:

    • At each step, calculate the current window's length (right - left + 1) and update the maximum length if the current window is larger.
  5. Continue until the end:

    • Repeat the process until the right pointer has traversed the entire string.

This approach ensures that each character is processed at most twice (once by right and once by left), leading to an efficient solution.

Step-by-Step Walkthrough

Consider the string "pwwkew":

  • Initialization:
    left = 0, right = 0, max_length = 0, and an empty hash map.

  • Iteration 1:

    • right = 0, character = 'p'.
    • 'p' is not in the map; add {'p': 0}.
    • Current window = "p", length = 1 → update max_length to 1.
  • Iteration 2:

    • right = 1, character = 'w'.
    • 'w' is not in the map; add {'p': 0, 'w': 1}.
    • Current window = "pw", length = 2 → update max_length to 2.
  • Iteration 3:

    • right = 2, character = 'w'.
    • 'w' is in the map with index 1, which is within the current window.
    • Move left to index 2 (one position right of index 1).
    • Update 'w' in the map to the current index: {'p': 0, 'w': 2}.
    • Current window = "w", length = 1 → max_length remains 2.
  • Iteration 4:

    • right = 3, character = 'k'.
    • 'k' is not in the map; add {'p': 0, 'w': 2, 'k': 3}.
    • Current window = "wk", length = 2 → max_length remains 2.
  • Iteration 5:

    • right = 4, character = 'e'.
    • 'e' is not in the map; add {'p': 0, 'w': 2, 'k': 3, 'e': 4}.
    • Current window = "wke", length = 3 → update max_length to 3.
  • Iteration 6:

    • right = 5, character = 'w'.
    • 'w' is in the map with index 2, which is within the current window.
    • Move left to index 3 (one position right of index 2).
    • Update 'w' in the map to index 5.
    • Current window = "kew", length = 3 → max_length remains 3.

The iteration ends with a maximum length of 3.

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:
    O(n), where n is the length of the string. Each character is visited at most twice (once by the right pointer and at most once by the left pointer when the window moves).

  • Space Complexity:
    O(min(m, n)), where m is the size of the character set and n is the length of the string. In the worst-case scenario, all characters in the string are unique.

Common Mistakes and Edge Cases

  • Mistake:
    Not updating the left pointer correctly when a duplicate character is found. This can result in counting overlapping characters.

  • Edge Case:
    When the string is empty, the result should be 0.

  • Edge Case:
    Strings with all identical characters (e.g., "aaaa") should return 1.

  • Longest Repeating Character Replacement:
    Involves modifying the string to maximize the length of a substring with repeating characters.

  • Longest Substring with At Most K Distinct Characters:
    A variation where the goal is to find the longest substring with no more than k unique characters.

  • Substring Problems Involving Sliding Window:
    Many problems involving contiguous subarrays or substrings can be solved with the sliding window technique.

TAGS
LeetCode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What are the three major techniques of interview?
What's the fastest frontend framework?
Where to find Zscaler interview questions and answers?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;