1512. Number of Good Pairs

naive

T: O(n^2)

S: O(1)

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

use hashmap

T: O(n)

S: O(n)

Last updated

Was this helpful?