Contains Duplicate

LeetCode Q 217 - Contains Duplicate

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.

Solution

Code:

public boolean containsDuplicate(int[] nums) {
    if (nums == null || nums.length == 0) return false;
	Set<Integer> set = new HashSet<>();
	for (int num: nums) 
		if (!set.add(num)) return true;
	return false;
}

   Reprint policy


《Contains Duplicate》 by Tong Shi is licensed under a Creative Commons Attribution 4.0 International License
  TOC