3102. Minimize Manhattan Distances
You are given a 0-indexed array
points
representing integer coordinates of some points on a 2D plane, wherepoints[i] = [xi, yi]
.The distance between two points is defined as their Manhattan distance.
Return the minimum possible value for maximum distance between any two points by removing exactly one point.