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,652 questions

51,529 answers

573 users

How to remove odd frequency characters from a string in Python

1 Answer

0 votes
def remove_odd_frequency_characters(s): 
    d = dict() 
    for i in range(len(s)): 
        if s[i] in d: 
            d[s[i]] = d[s[i]] + 1
        else: 
            d[s[i]] = 1

    new_string = "" 

    for i in range(len(s)): 
        if d[s[i]] % 2 != 0: 
            continue

        new_string = new_string + s[i] 
          
    return new_string
      

if __name__=='__main__': 
    s = "python programming version 3.2"

    new_string = remove_odd_frequency_characters(s) 
    
    print(new_string)
    
    
'''
run:

ppgmmigi

'''

 



answered Jan 31, 2019 by avibootz

Related questions

1 answer 87 views
1 answer 92 views
1 answer 83 views
1 answer 71 views
1 answer 78 views
1 answer 73 views
...