Kth Largest Element in an Array
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
Example 1:
Example 2:
Note: You may assume k is always valid, 1 ≤ k ≤ array's length.
Solution
Last updated