1460. Make Two Arrays Equal by Reversing Subarrays
思路:reverse subarray any number of time 代表可以将 array 修改成任意顺序
因此只要两个 array 内容相等即代表 canBeEqual
应该有更有效率的方式但是我懒了
class Solution {
public:
bool canBeEqual(vector<int>& target, vector<int>& arr) {
sort(target.begin(), target.end());
sort(arr.begin(), arr.end());
return target == arr;
}
};