摘要: 128.最长连续序列 public int longestConsecutive(int[] nums) { int len = 0; HashMap<Integer,Integer> hm = new HashMap<>(); for(int i : nums) { if(!hm.contains 阅读全文
posted @ 2022-02-16 15:29 现在开始努力 阅读(25) 评论(0) 推荐(0)