215. Kth Largest Element in an Array
https://leetcode.com/problems/kth-largest-element-in-an-array/
Problem
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
Was this helpful?