Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by marcelina.gorzelana
def verify_anagrams(first_word, second_word):
res = False
s1 = []
s2 = []
for i in range(len(first_word)):
if first_word[i] != ' ':
s1.append(first_word[i].lower())
for j in range(len(second_word)):
if second_word[j] != ' ':
s2.append(second_word[j].lower())
s1.sort()
s2.sort()
if s1 == s2:
res = True
return res
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. 23, 2016