Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Verify Anagrams by Bartosz_M
def verify_anagrams(first_word, second_word):
return sorted(''.join(first_word).upper().replace(" ", "")) == sorted(''.join(second_word).upper().replace(" ", ""))
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert isinstance(verify_anagrams(" d d a", 'ddz'), bool), "Boolean!"
assert verify_anagrams("Programming", "Gram Ring Mop") == True, "Gram of code"
assert verify_anagrams("Hello", "Ole Oh") == False, "Hello! Ole Oh!"
assert verify_anagrams("Kyoto", "Tokyo") == True, "The global warming crisis of 3002"
Nov. 20, 2016