Advertisement
Josif_tepe

Untitled

Oct 19th, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1. import math
  2.  
  3. def main():
  4.     a = input("Prv string: ")
  5.     b = input("Vtor string: ")
  6.  
  7.     a_mapa = dict()
  8.     b_mapa = dict()
  9.  
  10.     for c in a:
  11.         if c not in a_mapa.keys():
  12.             a_mapa.update({c: 1})
  13.         else:
  14.             a_mapa.update({c: a_mapa.get(c) + 1})
  15.  
  16.     for c in b:
  17.         if c not in b_mapa.keys():
  18.             b_mapa.update({c: 1})
  19.         else:
  20.             b_mapa.update({c: b_mapa.get(c) + 1})
  21.  
  22.     if a_mapa == b_mapa:
  23.         print("Anagram!")
  24.     else:
  25.         print("Ne e anagram!")
  26.  
  27.  
  28.  
  29. if __name__ == "__main__":
  30.     main()
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement