鳗鱼背包

文章
3
资源
0
加入时间
2年10月18天

Java最长连续序列

128. 最长连续序列class Solution { public int longestConsecutive(int[] nums) { Set<Integer> set = new HashSet<>(); for(int x : nums){ set.add(x); } int res = 0; for(int x : set){