Kth Largest Element in an Array (#215)

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.

Company Tags: Amazon, Microsoft

Core Concept: Sorting, Heap

Solve on LeetCode