g0101_0200.s0128_longest_consecutive_sequence.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0101_0200.s0128_longest_consecutive_sequence
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table #Union_Find
// #2022_09_03_Time_460_ms_(97.77%)_Space_51_MB_(99.32%)
import java.util.PriorityQueue
class Solution {
fun longestConsecutive(nums: IntArray): Int {
if (nums.isEmpty()) {
return 0
}
val queue = PriorityQueue()
nums.forEach {
queue.add(it)
}
var lastNum = Integer.MIN_VALUE
var length = 0
var maxLength = 1
while (!queue.isEmpty()) {
val num = queue.poll()
if (num == lastNum) {
continue
}
length ++
if (num - lastNum > 1) {
length = 1
}
lastNum = num
maxLength = maxOf(maxLength, length)
}
return maxLength
}
}