mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
2 lines
104 B
Python
2 lines
104 B
Python
def is_anagram(test, original):
|
|
return sorted(list(test.lower())) == sorted(list(original.lower()))
|