0
点赞
收藏
分享

微信扫一扫

LeetCode题解(1460):通过翻转子数组使两个数组相等(Python)


题目:​​原题链接​​(简单)

标签:数组

解法

时间复杂度

空间复杂度

执行用时

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)



举报

相关推荐

0 条评论