-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path217. Contains Duplicate.java
74 lines (60 loc) · 1.51 KB
/
217. Contains Duplicate.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.
Example 1:
Input: nums = [1,2,3,1]
Output: true
Example 2:
Input: nums = [1,2,3,4]
Output: false
Example 3:
Input: nums = [1,1,1,3,3,4,3,2,4,2]
Output: true
Constraints:
1 <= nums.length <= 105
-109 <= nums[i] <= 109
*/
//Solution
class Solution {
public boolean containsDuplicate(int[] nums) {
insertionSort(nums);
boolean checker = false;
for(int i = 0;i < nums.length-1;i++){
if(nums[i] == nums[i+1]){
checker = true;
break;
}
}
return checker;
}
public void insertionSort(int[] arr){
for (int i = 0; i < arr.length - 1; i++) {
for (int j = i+1; j > 0 ; j--) {
if(arr[j] < arr[j-1]){
swapArray(arr,j,j-1);
}else {
break;
}
}
}
}
public void swapArray(int[] arr,int first,int second){
int temp = arr[first];
arr[first] = arr[second];
arr[second] = temp;
}
}
//Another Solution
class Solution {
public boolean containsDuplicate(int[] nums) {
if(nums.length == 1){
return false;
}
Arrays.sort(nums);
for(int i = 0;i < nums.length-1;i++){
if(nums[i] == nums[i+1]){
return true;
}
}
return false;
}
}