3382. Maximum Area Rectangle With Point Constraints II
There are n points on an infinite plane. You are given two integer arrays
xCoordandyCoordwhere(xCoord[i], yCoord[i])represents the coordinates of theithpoint.Your task is to find the maximum area of a rectangle that:
- Can be formed using four of these points as its corners.
- Does not contain any other point inside or on its border.
- Has its edges parallel to the axes.
Return the maximum area that you can obtain or -1 if no such rectangle is possible.
3381. Maximum Subarray Sum With Length Divisible by K
You are given an array of integers
numsand an integerk.Return the maximum sum of a non-empty subarray of
nums, such that the size of the subarray is divisible byk.A subarray is a contiguous non-empty sequence of elements within an array.