We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e85511 commit 4e5be4eCopy full SHA for 4e5be4e
valid-anagram/do-heewan.py
@@ -1,4 +1,4 @@
1
class Solution:
2
def isAnagram(self, s: str, t: str) -> bool:
3
return sorted(s) == sorted(t)
4
-
+
0 commit comments