티스토리 뷰
leetcode.com/problems/sum-of-unique-elements/
배열을 argument로 넘겨주면 배열 내 unique value를 찾아서 그 값들의 합을 구하는 문제이다
class Solution {
public:
int sumOfUnique(vector<int>& nums) {
bool flag = false;
int cnt = 0;
for (int i = 0; i < nums.size(); i++) {
for (int j = 0; j < nums.size(); j++) {
if (nums[i] == nums[j] && i != j) {
flag = true;
break;
}
}
if (flag == false) {
cnt += nums[i];
}
else flag = false;
}
return cnt;
}
};
'알고리즘 문제 풀이' 카테고리의 다른 글
[알고리즘문제] 릿코드 Employee Importance 문제풀이실패 (0) | 2021.04.05 |
---|---|
[알고리즘문제] 릿코드 N-Repeated Element in Size 2N Array (0) | 2021.04.04 |
[알고리즘문제] 릿코드 How Many Numbers Are Smaller Than the Current Number (0) | 2021.04.04 |
[알고리즘문제] 릿코드 Jewels and Stones (0) | 2021.04.04 |
[알고리즘문제] 릿코드 Number of Good Pairs (0) | 2021.04.04 |