My programm is supposed to find a closest pair of points in the array. For example, closest_pair_of_points([(1, 2), (2, 2)]) has to return (1, (1, 2), (2, 2)). Where (1, 2),