Skip to content

Commit a35da60

Browse files
authored
Update 0703-kth-largest-element-in-a-stream.kt
1 parent deca0e5 commit a35da60

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

kotlin/0703-kth-largest-element-in-a-stream.kt

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
class KthLargest(k: Int, nums: IntArray) {
2-
val minHeap = PriorityQueue<Int>{ a: Int, b: Int ->
3-
a - b
4-
}
5-
var k = Integer.MIN_VALUE
1+
class KthLargest(val k: Int, val nums: IntArray) {
2+
val minHeap = PriorityQueue<Int>()
3+
64
init{
7-
this.k = k
8-
for(num in nums)
5+
for (num in nums)
96
minHeap.add(num)
10-
while(minHeap.size > k)
7+
while (minHeap.size > k)
118
minHeap.poll()
129
}
10+
1311
fun add(`val`: Int): Int {
1412
minHeap.add(`val`)
15-
if(minHeap.size > k)
13+
if (minHeap.size > k)
1614
minHeap.poll()
1715
return minHeap.peek()
1816
}

0 commit comments

Comments
 (0)