Maximum Average Subarray I
Understand how to apply the sliding window method to find the maximum average of any contiguous subarray of fixed length k in an integer array. Learn to implement an efficient solution that is key for solving similar array problems in coding interviews.
We'll cover the following...
We'll cover the following...
Statement
Given an array of integers nums, and an integer k, return the maximum average of a contiguous subarray of length k.
Constraints:
k...