Skip to content

Commit e02ef09

Browse files
authored
Update ayleeee.py
1 parent 8618ef3 commit e02ef09

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

valid-anagram/ayleeee.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ def is_anagram(s: str, t: str) -> bool:
66
Sorted : O(nlogn)
77
'''
88
return Counter(s) == Counter(t)
9+

0 commit comments

Comments
 (0)