Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Verify Anagrams by sts10131
def verify_anagrams(first_word, second_word):
f=first_word.lower()
s=second_word.lower()
t=''
for x in f:
if x!=' ':
t=t+x
f=t
t=''
for x in s:
if x!=' ':
t=t+x
s=t
for x in range(len(f)):
for y in range(len(s)):
if f[x]==s[y]:
s=s[:y]+s[y+1:]
break
if s=='' and x!=len(f)-1:
return False
if s=='':
return True
return False
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"
Dec. 27, 2016