Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Verify Anagrams by eugene100372
from collections import Counter as C
def verify_anagrams(first_word, second_word):
return (C(ch.lower() for ch in first_word if ch!=' ')==
C(ch.lower() for ch in second_word if ch!=' '))
May 17, 2021
Comments: