Problems / Sliding Window / Permutation in String
#18 Medium Time O(n) Space O(1) Animated

Permutation in String

Check if s1's permutation is a substring of s2.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern Sliding window with a maintained constraint

Expand to include new information, then shrink only until the window is valid again.

Approach: Sliding Window + Hash Map
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps