Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
little compex solution in Clear category for Verify Anagrams by Cjkjvfnby
from operator import eq
def verify_anagrams(first_word, second_word):
return eq(*[sorted(x.replace(' ', '').lower()) for x in (first_word, second_word)])
May 8, 2014
Comments: