forked from mickey0524/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1128.Number-of-Equivalent-Domino-Pairs.java
69 lines (51 loc) · 1.5 KB
/
1128.Number-of-Equivalent-Domino-Pairs.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
// https://leetcode.com/problems/number-of-equivalent-domino-pairs/
//
// algorithms
// Easy (35.04%)
// Total Accepted: 2,906
// Total Submissions: 8,294
// beats 100.0% of java submissions
class Tuple2 {
public int field1;
public int field2;
public Tuple2(int field1, int field2) {
this.field1 = field1;
this.field2 = field2;
}
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Tuple2 t = (Tuple2) o;
return this.field1 == t.field1 && this.field2 == t.field2;
}
public int hashCode() {
return field1 ^ field2;
}
}
class Solution {
public int numEquivDominoPairs(int[][] dominoes) {
HashMap<Tuple2, Integer> hashMap = new HashMap<>();
for (int[] pair : dominoes) {
int more = Math.max(pair[0], pair[1]);
int less = Math.min(pair[0], pair[1]);
Tuple2 t = new Tuple2(more, less);
hashMap.put(t, hashMap.getOrDefault(t, 0) + 1);
}
int res = 0;
for (int n : hashMap.values()) {
res += getFactorial(n);
}
return res;
}
public int getFactorial(int n) {
int res = 0;
for (int i = 1; i < n; i++) {
res += i;
}
return res;
}
}