Cosmoteer Modding Documentation

Popular Posts

Wednesday, 1 February 2023

LeetCode: 1512. Number of Good Pairs

 

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.


 



class Solution {
    public int numIdenticalPairs(int[] nums) {
       
        int counter = 0;

        for(int i=0; i< nums.length; i++){
            for(int j=i + 1; j< nums.length; j++)
                if (nums[i] == nums[j]) counter++;
        }
        return counter;
    }
}

No comments:

Post a Comment