题目:原题链接(简单)
标签:数组
解法 | 时间复杂度 | 空间复杂度 | 执行用时 |
Ans 1 (Python) | O(N) | O(N) | 56ms (20.51%) |
Ans 2 (Python) | O(NlogN) | O(N) | 44ms (80.81%) |
Ans 3 (Python) |
解法一:
def canBeEqual(self, target: List[int], arr: List[int]) -> bool:
return len(collections.Counter(target) - collections.Counter(arr)) == 0
解法二:
def canBeEqual(self, target: List[int], arr: List[int]) -> bool:
return sorted(target) == sorted(arr)