Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by PawlakBartosz43
def verify_anagrams(first_word, second_word):
return sorted(''.join(first_word.lower().split(' '))) == sorted(''.join(second_word.lower().split(' ')))
Jan. 15, 2017