K Closest Points to Origin
Try to solve the K Closest Points to Origin problem.
Statement
You are given an array of points where each element points[i]
k
. Your task is to find and return the k
points that are closest to the origin
The distance between two points on the X-Y plane is measured using Euclidean distance, which is calculated as:
Note: You can return the result in any order. The answer is guaranteed to be unique, except for the order in which points appear.
Constraints:
k
points.length
Examples
Understand the problem
Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:
K Closest Points to Origin
(Select all that apply.) What is the output if the following data is given as an input?
points
k
Figure it out!
We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.
Try it yourself
Implement your solution in the following coding playground.
import { MaxHeap, MinHeap } from "./Heap.js"/* The following definition is for MinHeap.You can use the same methods for MaxHeap.class MinHeap {size(); // return number of elementspeek(); // return top element without removingpush(val); // insert elementpop(); // remove and return top element}*/function kClosest(points, k){// Replace this placeholder return statement with your codereturn -1;}export {kClosest}