반응형
https://leetcode.com/problems/make-two-arrays-equal-by-reversing-sub-arrays/
두 배열을 구성하는 숫자가 다르면 무조건 false
숫자 개수가 다르거나, 없는 숫자가 있거나..
class Solution {
public:
bool canBeEqual(vector<int>& target, vector<int>& arr) {
bool fuck = false;
for(int i = 0;i<arr.size();i++){
fuck = false;
for(int j = 0;j<target.size();j++){
if(arr[i] == target[j]){
target[j] = -1;
fuck = true;
break;
}
}
if(!fuck)
return false;
}
return true;
}
};
반응형
'IT > 알고리즘' 카테고리의 다른 글
38] Leetcode 961. N-Repeated Element in Size 2N Array (0) | 2020.08.05 |
---|---|
37] Leetcode 1380. Lucky Numbers in a Matrix (0) | 2020.07.21 |
35★] Leetcode 1299. Replace Elements with Greatest Element on Right Side (0) | 2020.07.19 |
34] Leetcode 1351. Count Negative Numbers in a Sorted Matrix (0) | 2020.07.19 |
33] Leetcode 1304. Find N Unique Integers Sum up to Zero (0) | 2020.07.15 |
댓글