Given an array of points where , connect all points such that the total cost is minimized.
The cost of connecting two points is the Manhattan distance: . Return the minimum cost to connect all points.
Example: points returns . You're finding an MST where edge weights are Manhattan distances. Constraints: up to points.