✏️ Algorithm.
- 배열 내부에 같은 값을 가지는 쌍(인덱스)이 얼마나 존재하는지 확인하는 문제(중복 x)
📋 Solved.
- 인덱스의 중복이 일어나지 않게 배열 내부를 2중으로 순회 하면서 카운트를 하였다.
✔️ Code.
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;
}카운트를 하였다.
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode][Easy][Java] 1470. Shuffle the Array (0) | 2021.01.11 |
---|---|
[LeetCode][Easy][Java] 1431. Kids With the Greatest Number of Candies (0) | 2021.01.08 |
[LeetCode][Easy][Java] 1672. Richest Customer Wealth (0) | 2021.01.06 |
[LeetCode][Easy][Java] 1480. Running Sum of 1d Array (0) | 2021.01.04 |
[LeetCode][Easy][Java] 9. Palindrome Number (0) | 2020.11.27 |