Open swag1223 opened 3 years ago
Given an integer array nums and an integer k, return the kth largest element in the array.
Note that it is the kth largest element in the sorted order, not the kth distinct element.
example: Input: nums = [3,2,1,5,6,4], k = 2 Output: 5
i want to add solution of this problem covering all possible approaches (from sorting to quick select)
Hey there, Can you please assign me this issue? Thank You!
@swag1223, Hope you are fine. Can I also add some solutions here?
Given an integer array nums and an integer k, return the kth largest element in the array.
Note that it is the kth largest element in the sorted order, not the kth distinct element.
example: Input: nums = [3,2,1,5,6,4], k = 2 Output: 5
i want to add solution of this problem covering all possible approaches (from sorting to quick select)