Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by internom
def verify_anagrams(first_word, second_word):
rs = lambda x: sorted("".join(x.lower().split()))
return rs(first_word) == rs(second_word)
Dec. 11, 2015