✏️ 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; }카운트를 하였다.