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 7bc0b19 commit 306ac37Copy full SHA for 306ac37
valid-anagram/yyyyyyyyyKim.py
@@ -0,0 +1,6 @@
1
+class Solution:
2
+ def isAnagram(self, s: str, t: str) -> bool:
3
+
4
+ if sorted(s) == sorted(t):
5
+ return True
6
+ return False
0 commit comments