Class Solution
-
- All Implemented Interfaces:
public final class Solution
1128 - Number of Equivalent Domino Pairs.
Easy
Given a list of
dominoes
,dominoes[i] = [a, b]
is equivalent todominoes[j] = [c, d]
if and only if either (a == c
andb == d
), or (a == d
andb == c
) - that is, one domino can be rotated to be equal to another domino.Return the number of pairs
(i, j)
for which0 <= i < j < dominoes.length
, anddominoes[i]
is equivalent todominoes[j]
.Example 1:
Input: dominoes = [1,2,2,1,3,4,5,6]
Output: 1
Example 2:
Input: dominoes = [1,2,1,2,1,1,1,2,2,2]
Output: 3
Constraints:
<code>1 <= dominoes.length <= 4 * 10<sup>4</sup></code>
dominoes[i].length == 2
1 <= dominoes[i][j] <= 9
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final Integer
numEquivDominoPairs(Array<IntArray> dominoes)
-
-
Method Detail
-
numEquivDominoPairs
final Integer numEquivDominoPairs(Array<IntArray> dominoes)
-
-
-
-