LeetCode/Top150Interview/242_Valid_Anagram.py
2023-07-27 18:06:28 -07:00

7 lines
116 B
Python

def isAnagram(s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""