Problems / Sliding Window / Sliding Window Maximum
#20 Hard Time O(n) Space O(n) Animated

Sliding Window Maximum

Return the maximum element in each sliding window of size k.

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: Monotonically Decreasing Deque
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps