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)
Previous846. Hand of Straights, 1296. Divide Array in Sets of K Consecutive NumbersNext387. First Unique Character in a String
Last updated
Was this helpful?