Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 454 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 454 Bytes

<< [18] Max of each sub-array of length k >>

Given an array of integers and a number k, where 1 <= k <= length of the array, compute the maximum values of each sub-array of length k. Do this in O(n) time and O(k) space. You can modify the input array in-place and you do not need to store the results. You can simply print them out as you compute them.

Example:

>>> coding_problem_18([10, 5, 2, 7, 8, 7], 3)
[10, 7, 8, 8]