-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathintersection_of_two_arrays.dart
132 lines (111 loc) · 2.75 KB
/
intersection_of_two_arrays.dart
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
-* 349. Intersection of Two Arrays *-
Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must be unique and you may return the result in any order.
Example 1:
Input: nums1 = [1,2,2,1], nums2 = [2,2]
Output: [2]
Example 2:
Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
Output: [9,4]
Explanation: [4,9] is also accepted.
Constraints:
1 <= nums1.length, nums2.length <= 1000
0 <= nums1[i], nums2[i] <= 1000
*/
import 'dart:collection';
class A {
List<int> intersection(List<int> nums1, List<int> nums2) {
HashSet<int> hashSet = HashSet();
nums1.sort();
nums2.sort();
int i = 0;
int j = 0;
while (i < nums1.length && j < nums2.length) {
if (nums1[i] < nums2[j]) {
i++;
} else if (nums1[i] > nums2[j]) {
j++;
} else {
hashSet.add(nums1[i]);
i++;
j++;
}
}
List<int> result = List.filled(hashSet.length, 0);
int k = 0;
for (int number in hashSet) {
result[k++] = number;
}
return result;
}
}
class B {
List<int> intersection(List<int> nums1, List<int> nums2) {
HashSet hashSet = HashSet();
for (int i = 0; i < nums1.length; i++) {
hashSet.add(nums1[i]);
}
List<int> arr = [];
for (int i = 0; i < nums2.length; i++) {
if (hashSet.contains(nums2[i])) {
arr.add(nums2[i]);
hashSet.remove(nums2[i]);
}
}
return arr;
}
}
class C {
List<int> intersection(List<int> nums1, List<int> nums2) {
HashSet<int> hashSet = new HashSet();
nums2.sort();
for (int number in nums1) {
if (binarySearch(nums2, number)) {
hashSet.add(number);
}
}
int i = 0;
List<int> result = List.filled(hashSet.length, 0);
for (int number in hashSet) {
result[i++] = number;
}
return result;
}
bool binarySearch(List<int> nums, int target) {
int low = 0;
int high = nums.length - 1;
while (low <= high) {
int mid = low + (high - low) ~/ 2;
if (nums[mid] == target) {
return true;
}
if (nums[mid] > target) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return false;
}
}
class D {
List<int> intersection(List<int> nums1, List<int> nums2) {
List<int> result = [];
if (nums1.isEmpty || nums2.isEmpty) return result;
nums1.sort();
nums2.sort();
for (int i = 0, j = 0; i < nums1.length && j < nums2.length;) {
if (nums1[i] == nums2[j]) {
int size = result.length;
i++;
j++;
if (size != 0 && result.elementAt(size - 1) == nums1[i - 1]) continue;
result.add(nums1[i - 1]);
} else if (nums1[i] < nums2[j])
i++;
else
j++;
}
return result;
}
}