Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by narumi.kano.3
def verify_anagrams(fir, sec):
return alph(fir) == alph(sec)
alph = lambda word: sorted([x for x in word.lower() if x.isalpha()])
Jan. 11, 2015