Skip to content

Commit 48e887e

Browse files
committed
feat: 0703 Kth Largest Element in a Stream
1 parent 27f1e26 commit 48e887e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Leetcode/0215.Kth-Largest-Element-in-an-Array/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: "Kth Largest Element in an Array"
1010
license: ""
1111
images: []
1212

13-
tags: [LeetCode, Go, Medium, Kth Largest Element in an Array, Heap, Sorting]
13+
tags: [LeetCode, Go, Medium, Kth Largest Element in an Array, Heap, Priority Queue, Sorting]
1414
categories: [LeetCode]
1515

1616
featuredImage: ""

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ https://kimi0230.github.io/LeetcodeGolang/
101101

102102

103103
#### Heap
104-
104+
| No. | Title | Solution | Difficulty | Time | Space | Topic |
105+
|--------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------:|------------|------------------|-------|----------------------|
106+
| [0703](https://kimi0230.github.io/LeetcodeGolang/Leetcode/0703.Kth-Largest-Element-in-a-Stream/) | [Kth Largest Element in a Stream](https://leetcode.com/problems/kth-largest-element-in-a-stream/) | [Go](https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0703.Kth-Largest-Element-in-a-Stream) | Easy | O(K + (N-K)logK) | O(k) | Heap, Priority Queue |
105107

106108
#### Disjoint Set Union
107109

0 commit comments

Comments
 (0)