class Solution {
public:
bool canBeEqual(vector<int>& target, vector<int>& arr) {
sort(target.begin(), target.end());
sort(arr.begin(), arr.end());
if(target == arr)
{
return true;
}
return false;
}
};
leetcode 1460. 通过翻转子数组使两个数组相等
最新推荐文章于 2024-02-18 21:38:31 发布