leetcode217:Contains Duplicate

来源:互联网 发布:mysql给表添加分区 编辑:程序博客网 时间:2024/05/21 21:44

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

    public class Solution {        public boolean containsDuplicate(int[] nums) {            if(nums==null||nums.length<2) return false;            HashSet<Integer> set=new HashSet<Integer>();            for(int i:nums){                if(!set.add(i)){                    return true;                }            }            return false;        }    }
0 0
原创粉丝点击