forked from havanagrawal/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_217.java
29 lines (26 loc) · 774 Bytes
/
_217.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
/**
* 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.
*/
public class _217 {
public static class Solution1 {
public boolean containsDuplicate(int[] nums) {
if (nums == null || nums.length == 0) {
return false;
}
Set<Integer> set = new HashSet();
for (int i : nums) {
if (!set.add(i)) {
return true;
}
}
return false;
}
}
}