Skip to content

Commit 274b0a2

Browse files
authored
Update Kth Largest Element in an Array - Leetcode 215.py
1 parent 96a6a66 commit 274b0a2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Kth Largest Element in an Array - Leetcode 215/Kth Largest Element in an Array - Leetcode 215.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Brute Force Solution
2-
import heapq
32
class Solution:
43
def findKthLargest(self, nums: List[int], k: int) -> int:
54
nums.sort()

0 commit comments

Comments
 (0)