首页 > 学院 > 开发设计 > 正文

217. Contains Duplicate

2019-11-14 12:15:04
字体:
来源:转载
供稿:网友
import java.util.Arrays;import java.util.HashSet;public class Solution { public boolean containsDuplicate(int[] nums) { Integer[] array = new Integer[nums.length]; for (int i = 0; i < nums.length; i++) array[i] = new Integer(nums[i]); HashSet<Integer> hs = new HashSet<Integer>(); hs.addAll(Arrays.asList(array)); return hs.size() < nums.length; }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表