Input: [(1, 0), (2, 1), (3, 6), (-5, 2), (1, -4)], K = 3
Output: [(1, 0), (2, 1), (1, -4)]
Explanation:
Square of Distances of points from origin are
(1, 0) : 1
(2, 1) : 5
(3, 6) : 45
(-5, 2) : 29
(1, -4) : 17
Hence for K = 3, the closest 3 points are (1, 0), (2, 1) & (1, -4).
Input: [(1, 3), (-2, 2)], K = 1
Output: [(-2, 2)]
Explanation:
Square of Distances of points from origin are
(1, 3) : 10
(-2, 2) : 8
Hence for K = 1, the closest point is (-2, 2).