Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by cinekk
def verify_anagrams(first_word, second_word):
first_word = first_word.upper()
second_word = second_word.upper()
check = ''
for word in second_word.split():
check += word
second_word,check = check, ''
for word in first_word.split():
check += word
first_word, check = check, ''
if len(second_word) != len(first_word): return False
for ch in second_word:
if ch in first_word:
if ch in check and check.count(ch) == first_word.count(ch):
return False
else:
check += ch
elif ch == ' ':
continue
else:
return False
return True
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert isinstance(verify_anagrams("a", 'z'), 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. 7, 2016