Solución
solution.tsTypeScript
def is_anagram(first_word: str, second_word: str) -> bool:
if len(first_word) != len(second_word):
return False
if sorted(first_word) == sorted(second_word):
return True0respuestas
def is_anagram(first_word: str, second_word: str) -> bool:
if len(first_word) != len(second_word):
return False
if sorted(first_word) == sorted(second_word):
return TrueAún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.