Leetcode in Java && Oracle
422 subscribers
8 photos
397 files
400 links
Second channel: @codeforces_java

Let's Develop Together!
Download Telegram
image_2021-10-23_16-51-13.png
28.5 KB
#N1512. Number of Good Pairs
problem link=>https://leetcode.com/problems/number-of-good-pairs/

#solution
class Solution {
public int numIdenticalPairs(int[] nums) {
int good=0;
for(int i=0; i<nums.length-1; i++){
for(int j=i+1; j<nums.length; j++){
if(nums[i]==nums[j])
good++;
}
}

return good;
}
}