Kth largest element in a stream
class KthLargest:
def __init__(self, k: int, nums: List[int]):
self.k = k
self.nums = nums
heapify(self.nums)
while len(self.nums) > self.k:
heappop(self.nums)
def add(self, val: int) -> int:
heappush(self.nums,val)
while len(self.nums) > self.k:
heappop(self.nums)
return self.nums[0]
# Your KthLargest object will be instantiated and called as such:
# obj = KthLargest(k, nums)
# param_1 = obj.add(val)