标签:blog span inf pre 通过 += class mamicode ng2
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14331519.html
题目链接:https://leetcode-cn.com/problems/number-of-equivalent-domino-pairs/
给你一个由一些多米诺骨牌组成的列表 dominoes。
如果其中某一张多米诺骨牌可以通过旋转 0 度或 180 度得到另一张多米诺骨牌,我们就认为这两张牌是等价的。
形式上,dominoes[i] = [a, b] 和 dominoes[j] = [c, d] 等价的前提是 a==c 且 b==d,或是 a==d 且 b==c。
在 0 <= i < j < dominoes.length 的前提下,找出满足 dominoes[i] 和 dominoes[j] 等价的骨牌对 (i, j) 的数量。
示例:
输入:dominoes = [[1,2],[2,1],[3,4],[5,6]]
输出:1
把每个数组中的两个元素按照从小到大变成十进制的数,把这个十进制当成数组的下标,计算数组中相同下标的和有多少。
public class Solution { public int numEquivDominoPairs(int[][] dominoes) { int[] arr = new int[100]; int index=0; int count = 0; for (int[] nums : dominoes) { if(nums[0]>nums[1]){ int temp=nums[0]; nums[0]=nums[1]; nums[1]=temp; } index=nums[0]*10+nums[1]; count+=arr[index]; arr[index]++; } return count; } }
标签:blog span inf pre 通过 += class mamicode ng2
原文地址:https://www.cnblogs.com/ping2yingshi/p/14331519.html