Skip to content

Commit 0188f81

Browse files
authored
Update kth_largest_element.data structures
1 parent bae33ac commit 0188f81

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

data_structures/arrays/kth_largest_element.py

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
"""
2-
Given an array of integers and an integer k, find the kth largest element in the array.
3-
4-
https://stackoverflow.com/questions/251781
5-
"""
6-
71

82
def partition(arr: list[int], low: int, high: int) -> int:
93
"""

0 commit comments

Comments
 (0)