Search⌘ K
AI Features

Solution: Find Longest Self-Contained Substring

Explore how to find the longest self-contained substring of a given string by using hash maps to track each character's first and last occurrence. Understand window expansion and validation to ensure all characters in the substring are unique to that segment. This lesson helps you apply hashing techniques to solve substring problems with linear time complexity.

Statement

You are given a string, s, consisting of lowercase English letters. Your task is to find the length of the longest self-contained substring of s.

A substring t of s is called self-contained if:

  • t is not equal to the entire string s.

  • Every character in t does not appear anywhere else in s (outside of t).

In other words, all characters in t are completely unique to that substring within the string s.

Return the length of the longest self-contained substring. If no such substring exists, return -1.

Constraints:

  • 22 \leq ...