티스토리 뷰
leetcode.com/problems/n-repeated-element-in-size-2n-array/
배열을 argument로 넘겨준다.
해당 배열 내 반복되는 숫자가 있다. 그 외의 숫자는 unique 값이다. 반복되는 숫자를 return
class Solution {
public:
int repeatedNTimes(vector<int>& A) {
int cnt = 0;
bool flag = false;
for (int i = 0; i < A.size(); i++) {
for (int j = 0; j < A.size(); j++) {
if (i != j && A[i] == A[j]) {
flag = true;
break;
}
}
if (flag == true) {
cnt = A[i];
break;
}
}
return cnt;
}
};
'알고리즘 문제 풀이' 카테고리의 다른 글
[알고리즘문제] 릿코드 Subdomain Visit Count (0) | 2021.04.06 |
---|---|
[알고리즘문제] 릿코드 Employee Importance 문제풀이실패 (0) | 2021.04.05 |
[알고리즘문제풀이] 릿코드 Sum of Unique Elements (0) | 2021.04.04 |
[알고리즘문제] 릿코드 How Many Numbers Are Smaller Than the Current Number (0) | 2021.04.04 |
[알고리즘문제] 릿코드 Jewels and Stones (0) | 2021.04.04 |