开始刷leetcode day63: Contains Duplicate

来源:互联网 发布:能看伪恋的漫画软件 编辑:程序博客网 时间:2024/05/16 15:20

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.


Java:

public class Solution {
    public boolean containsDuplicate(int[] nums) {
        HashMap<Integer,Integer> hashmap = new HashMap<Integer,Integer>();
        
        for(int i=0; i<nums.length; i++)
        {
            if(hashmap.containsKey(nums[i])) return true;
            else
            {
                hashmap.put(nums[i],1);
            }
        }
        
        return false;
    }
}

0 0
原创粉丝点击