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