英文原文
Given an array of integers nums
, return the number of good pairs.
A pair (i, j)
is called good if nums[i] == nums[j]
and i
< j
.
Example 1:
Input: nums = [1,2,3,1,1,3] Output: 4 Explanation: There are 4 good pairs (0,3), (0,4), (3,4), (2,5) 0-indexed.
Example 2:
Input: nums = [1,1,1,1] Output: 6 Explanation: Each pair in the array are good.
Example 3:
Input: nums = [1,2,3] Output: 0
Constraints:
1 <= nums.length <= 100
1 <= nums[i] <= 100
中文题目
给你一个整数数组 nums
。
如果一组数字 (i,j)
满足 nums[i]
== nums[j]
且 i
< j
,就可以认为这是一组 好数对 。
返回好数对的数目。
示例 1:
输入:nums = [1,2,3,1,1,3] 输出:4 解释:有 4 组好数对,分别是 (0,3), (0,4), (3,4), (2,5) ,下标从 0 开始
示例 2:
输入:nums = [1,1,1,1] 输出:6 解释:数组中的每组数字都是好数对
示例 3:
输入:nums = [1,2,3] 输出:0
提示:
1 <= nums.length <= 100
1 <= nums[i] <= 100
通过代码
高赞题解
解题思路
代码
class Solution {
public int numIdenticalPairs(int[] nums) {
int ans = 0;
//因为 1<= nums[i] <= 100 所以申请大小为100的数组
//temp用来记录num的个数
int[] temp = new int[100];
/*
从前面开始遍历nums
假设nums = [1,1,1,1]
第一遍
temp是[0,0,0,0]
ans+=0;
temp[0]++;
第二遍
temp是[1,0,0,0]
ans+=1;
temp[0]++;
第三遍
temp=[2,0,0,0]
ans+=2;
temp[0]++;
第四遍
temp=[3,0,0,0]
ans+=3;
temp[0]++;
*/
for (int num : nums) {
/*
这行代码可以写成
ans+=temp[num - 1];
temp[num - 1]++;
*/
ans += temp[num - 1]++;
}
return ans;
}
}
统计信息
通过次数 | 提交次数 | AC比率 |
---|---|---|
60092 | 70810 | 84.9% |
提交历史
提交时间 | 提交结果 | 执行时间 | 内存消耗 | 语言 |
---|