Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

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

Comments