Skip to content

Commit 65df0c5

Browse files
committed
1460
1 parent f10193b commit 65df0c5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
class Solution:
3-
def canBeEqual(self, target: List[int], arr: List[int]) -> bool:
2+
def canBeEqual(self, target: list[int], arr: list[int]) -> bool:
43
return sorted(target) == sorted(arr)

0 commit comments

Comments
 (0)