7 lines
116 B
Python
7 lines
116 B
Python
def isAnagram(s, t):
|
|
"""
|
|
:type s: str
|
|
:type t: str
|
|
:rtype: bool
|
|
"""
|
|
|