max_window_sum(numbers, k) that returns the maximum sum of any k consecutive elements in numbers, using a sliding window so the whole list is scanned only once (not recomputing the sum from scratch for every window). Assume 1 <= k <= len(numbers).numbers = [2, 1, 5, 1, 3, 2], k = 3
9
The window [5, 1, 3] sums to 9, the largest of any 3 consecutive elements.
Compute the sum of the first window, then slide: subtract the element leaving, add the element entering.