DSA icon indicating copy to clipboard operation
DSA copied to clipboard

kth largest element in an array

Open swag1223 opened this issue 4 years ago • 2 comments

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)

swag1223 avatar Oct 01 '21 10:10 swag1223

Hey there, Can you please assign me this issue? Thank You!

mauryanik avatar Oct 25 '21 11:10 mauryanik

@swag1223, Hope you are fine. Can I also add some solutions here?

Parmesh119 avatar Jan 30 '23 17:01 Parmesh119