A.1.1.2: Sliding Windows

Learning Objectives

  1. Understand how to apply the sliding-window technique to solve relevant array problems

Introduction

The sliding-window technique allow us to iteratively analyse subarrays ("windows") of varying sizes in an array by storing and independently incrementing a start and end index of the current subarray. Read this Stack Overflow answer for an intuitive explanation.

Exercises

After attempting each problem, find solutions in the Leaderboard tab (HackerRank, may be on left side of page) or Solution or Discuss tabs (LeetCode) on that problem's page. If you get stuck for more than 15 minutes, review and understand the solutions and move on. Come back and re-attempt the problem after a few days.

Pre-Class

  1. Sum of All Odd-Length Subarrays (LeetCode)

    1. Note: There is no need to attempt the O(n) solution for now. The O(n) solution requires math that may not be the most relevant to us while we are practising JavaScript.

    2. Hint: Would nested loops be helpful, an outer loop that determines the length of the subarray, and an inner loop that sums all subarrays of a given length?

Part 1

  1. Maximum Number of Vowels in a Substring of Given Length (LeetCode)

  2. Longest Turbulent Subarray (LeetCode)

Part 2

  1. Longest Continuous Subarray with Absolute Difference Less Than or Equal to Limit (LeetCode)

  2. Grumpy Bookstore Owner (LeetCode)

    1. Hint: We may want to create a helper function that calculates the number of customers satisfied in a given day, given the specific days that the bookstore owner is not grumpy.

More Comfortable

  1. Max Consecutive Ones III (LeetCode)

    1. Hint: What determines the start and end of the sliding window?

    2. Hint: Do we need to track the indexes of 0s in the array?

  2. Longest Repeating Character Replacement (LeetCode)

Last updated