Challenge: Closest Points
Solve the Closest Points Problem.
We'll cover the following...
Problem
Closest Points Problem
Find the closest pair of points in a set of points on a plane.
Input: A list of points on a plane.
Output: The minimum distance between a pair of these points.
Input format: A list of points on plane (,).
Output format: The minimum distance.
Recall that the distance between points (, ...