Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to make two strings anagram by removing characters in Python

1 Answer

0 votes
from collections import Counter
 
def RemoveCharactersNeedToBeRemovedForAnagram(lst):
    count_character = 0
    st = set() 
    for character in lst[0] + lst[1]:
        if character not in st:
            st.add(character)
            if abs(lst[0].count(character) - lst[1].count(character)):
                lst[0] = lst[0].replace(character, '')
                lst[1] = lst[1].replace(character, '')

  
str1 = "masterfx"
str2 = "ksampret"

lst = [str1, str2]  

RemoveCharactersNeedToBeRemovedForAnagram(lst)

str1, str2  = lst

print(str1)
print(str2)

  
'''
run:
    
master
samret

'''

 



answered Sep 30, 2022 by avibootz

Related questions

1 answer 103 views
1 answer 127 views
1 answer 130 views
1 answer 101 views
1 answer 146 views
...