Solution: Minimize Manhattan Distances
Explore how to determine the smallest possible maximum Manhattan distance between points in a 2D plane after removing exactly one point. Understand the role of coordinate sums and differences in identifying key points and learn an efficient O(n) approach to solve the problem without brute force.
We'll cover the following...
Statement
You are given an array, points, where each element in points[i]
Your task is to determine and return the smallest possible value for the maximum distance between any two points after removing exactly one point from the array.
Constraints:
points.length...