public class Solution { public int longestConsecutive(int[] num) { HashSethash=new HashSet (); int max=1; for(int n:num) { hash.add(n); } int j=0; while(!hash.isEmpty()&&j max) max=count; j++; } return max; }}
本文共 521 字,大约阅读时间需要 1 分钟。
public class Solution { public int longestConsecutive(int[] num) { HashSethash=new HashSet (); int max=1; for(int n:num) { hash.add(n); } int j=0; while(!hash.isEmpty()&&j max) max=count; j++; } return max; }}
转载于:https://www.cnblogs.com/hansongjiang/p/3840651.html