Start valid anagram

This commit is contained in:
Jacob Delgado 2023-07-27 18:06:28 -07:00
parent cf7e3882ed
commit 07f0cc4163

View File

@ -0,0 +1,7 @@
def isAnagram(s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""