Skip to content

Commit 4e5be4e

Browse files
committed
Update do-heewan.py
1 parent 1e85511 commit 4e5be4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valid-anagram/do-heewan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class Solution:
22
def isAnagram(self, s: str, t: str) -> bool:
33
return sorted(s) == sorted(t)
4-
4+

0 commit comments

Comments
 (0)