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 9475b05 commit 5655b10Copy full SHA for 5655b10
valid-anagram/yayyz.py
@@ -0,0 +1,3 @@
1
+class Solution:
2
+ def isAnagram(self, s: str, t: str) -> bool:
3
+ return Counter(s) == Counter(t)
0 commit comments