Max subarray, and Max sub rectangle less than K
This is a variation of this post. Besides finding the max continuous subarray, it requires that the max value should be less or equal to K. The solution is to store all the sum[right] for arr[0, …, right]. Then try to find the sum[left] for arr[0, …, left], which we can get max(sum[right] – sum[left])… Read More »