Given an array of `points` where points[i] = [x, y], and an integer `k`, return the k points closest to the origin (0,0) by Euclidean distance. Break ties by smaller x then y, and return the result sorted, for a deterministic order.