Given an array of `points` where `points[i] = [xi, yi]` represents a point on the X-Y plane and an integer `k`, return the `k` closest points to the origin `(0, 0)`. The distance from the origin is the Euclidean distance `sqrt(xi² + yi²)`. You may return the answer in any order.
Sort by Euclidean Distance
Compare squared distances to avoid computing sqrt. Sort all points by x² + y² and take the first k.