Skip to content

Commit 1691de2

Browse files
author
sangbeenmoon
committed
solved valid-anagram.
1 parent d9b70f6 commit 1691de2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

valid-anagram/sangbeenmoon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
class Solution:
55
def isAnagram(self, s: str, t: str) -> bool:
6-
return sorted(s) == sorted(t)
6+
return sorted(s) == sorted(t)

0 commit comments

Comments
 (0)