forked from javadev/LeetCode-in-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
32 lines (29 loc) · 960 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package g0101_0200.s0128_longest_consecutive_sequence;
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table #Union_Find
// #Top_Interview_150_Hashmap #Big_O_Time_O(N_log_N)_Space_O(1)
// #2024_11_13_Time_14_ms_(98.89%)_Space_57.1_MB_(77.61%)
import java.util.Arrays;
@SuppressWarnings("java:S135")
public class Solution {
public int longestConsecutive(int[] nums) {
if (nums.length == 0) {
return 0;
}
Arrays.sort(nums);
int max = Integer.MIN_VALUE;
int thsMax = 1;
for (int i = 0; i < nums.length - 1; i++) {
if (nums[i + 1] == nums[i] + 1) {
thsMax += 1;
continue;
}
if (nums[i + 1] == nums[i]) {
continue;
}
// Start of a new Sequene
max = Math.max(max, thsMax);
thsMax = 1;
}
return Math.max(max, thsMax);
}
}