K'th Largest Element
heapsGiven an array of numbers A, and positive integer k, find the K'th largest element in the array.
Example:
INPUT:
A = [5, 5, 9, 10, 2, 12, 3, 6] , k = 3
OUTPUT:
K'th largest element in the array is 9
Notes:
1 ≤ k ≤ n
The given array will not necessarily be sorted
This problem is b...