This repository has been archived on 2025-05-28. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
265 B
Python
Raw Normal View History

2021-01-31 17:32:40 +01:00
def is_anagram_v1(string1, string2):
"""Returns True if both strings are anagrams."""
letters1 = list(string1.lower())
letters2 = list(string2.lower())
letters1.sort()
letters2.sort()
return letters1 == letters2
is_anagram = is_anagram_v1