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 nn points on a plane.

Output: The minimum distance between a pair of these points.


Input format: A list of nn points on plane (xix_{i},yiy_{i}).

Output format: The minimum distance.

Recall that the distance between points (x1x_{1}, y1y_{1} ...