Skip to main content

7 docs tagged with "Sliding Window"

View all tags

Character Replacement

In this blog post, we'll explore how to solve the character replacement problem using the sliding window technique.

Maximum Sum Subarray of Size K

In this blog post, we'll explore how to find the maximum sum of any subarray of size K using the Sliding Window Algorithm.

Practice Problems

Here are some practice problems for the Sliding Window technique, divided into topic-wise and difficulty-wise categories.

Sliding Window Algorithm

In this blog post, we'll explore the Sliding Window Algorithm, an efficient technique for solving problems related to arrays or strings.

Sliding Window Maximum

Given array of integers nums , with sliding window of size k which is moving from the very left of the array to the very right.Return the max for each sliding window.