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 8618ef3 commit e02ef09Copy full SHA for e02ef09
valid-anagram/ayleeee.py
@@ -6,3 +6,4 @@ def is_anagram(s: str, t: str) -> bool:
6
Sorted : O(nlogn)
7
'''
8
return Counter(s) == Counter(t)
9
+
0 commit comments