Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Dumb solution in Clear category for Verify Anagrams by obone
verify_anagrams = lambda word1, word2: \
sorted(''.join(word1.lower().split())) == sorted(''.join(word2.lower().split()))
May 6, 2020