Problem Link: https://leetcode.com/problems/kth-largest-element-in-an-array/ Problem Description: 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:
Input: [3,2,1,5,6,4] and k = 2
Output: 5 Approach Used: Heap, Priority Queue Explanation: The most naive…