Coders Crushby Napplied AI
Back to DSA Problems
MediumSliding Window

Longest Substring Without Repeating

Find longest substring without repeating

Solution Approach

Maintain a window of elements with a specific property. Expand window by moving right pointer, contract by moving left pointer when condition is violated. Use HashMap/Set to track elements in current window.

Implementation
def lengthOfLongestSubstring(s):
    char_map = {}
    max_length = 0
    left = 0
    for right in range(len(s)):
        if s[right] in char_map:
            left = max(left, char_map[s[right]] + 1)
        char_map[s[right]] = right
        max_length = max(max_length, right - left + 1)
    return max_length
Complexity Analysis

Time Complexity

O(n)

Space Complexity

O(min(m, n))
Key Learning Points
Maintain valid window with two pointersUse HashMap for character trackingExpand right, contract left when needed
Related Problems to Practice
Minimum Window SubstringSliding Window MaximumSubarrays with K Different Integers
Complexity
Time:O(n)
Space:O(min(m, n))
Asked at
GoogleAmazonMicrosoft
Coders Crushby Napplied AI

The ultimate interview preparation platform. Master System Design, DSA, and tackle community challenges to crush your FAANG interviews.

Looking for jobs? Visit Napplied AI Jobs Search Agent

System Design

  • All Problems
  • Easy
  • Hard

DSA

  • All Problems
  • Dynamic Programming
  • Graphs

More

  • Problems Arena
  • Growth Paths
  • My Crush

Coders Crush by Napplied AI - Tech Interview & Coding Should Be Effortless