Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by McRawicz
def verify_anagrams(first_word, second_word):
x=first_word.lower().replace(" ","")
y=second_word.lower().replace(" ","")
if sorted(x)==sorted(y):
return True
return False
Oct. 28, 2016