Given an array of n integers, find the contiguous subarray of given length k that has the maximum average value. Output the maximum average value.
The candidate's solution correctly finds the maximum average value of a given array and length k. The solution is clear and easy to follow. One potential improvement would be to use the built-in max() and sum() functions rather than creating a custom max_sum function.
Evaluated at: 2022-12-11 08:15:23