Codewars 7 kyu Anagram Detection
Task
Complete the function to return true if the two arguments given are anagrams of each other; return false otherwise.
Verbalization
Make all capital letter to small letter
Change alphabetical order
If equal the result of 2. Return true, if not return false.
Code
# write the function is_anagram
def is_anagram(test, original):
test = sorted(test.lower())
original = sorted(original.lower())
if test == original:
return True
else:
return False