HTMLify
LeetCode - Kth Largest Element in an Array - Python
Views: 2 | Author: abh
class Solution:findKthLargest=lambda _,n,k:sorted(n)[-k]
class Solution:findKthLargest=lambda _,n,k:sorted(n)[-k]