Open In App

Python | Replace duplicates in tuple

Last Updated : 23 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Sometimes, while working with Python tuples, we can have a problem in which we need to remove tuples elements that occur more than one times and replace duplicas with some custom value. Let’s discuss certain ways in which this task can be performed.

Method #1 : Using set() + list comprehension 
The combination of above functionalities can be used to perform this particular task. In this, we just initialize a set container and then replace the reoccurring elements with a value after checking its existence it’s existence in tuple.
 

Python3




# Python3 code to demonstrate working of
# Replace duplicates in tuple
# using set() + list comprehension
 
# initialize tuple
test_tup = (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
 
# printing original tuple
print("The original tuple is : " + str(test_tup))
 
# Replace duplicates in tuple
# using set() + list comprehension
temp = set()
res = tuple(ele if ele not in temp and not temp.add(ele)
                else 'gfg' for ele in test_tup)
 
# printing result
print("Tuple after replacing values : " + str(res))


Output : 

The original tuple is : (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
Tuple after replacing values : (1, 'gfg', 4, 'gfg', 'gfg', 5, 'gfg', 6, 7, 'gfg')

 

 
Method #2 : Using groupby() + loop 
The combination of above functionalities can be solved using this problem. In this, we just group the consecutive elements and then replace each element except for 1st with default value. Works only in case of consecutive duplicates.
 

Python3




# Python3 code to demonstrate working of
# Replace duplicates in tuple
# using groupby() + loop
from itertools import groupby
 
# initialize tuple
test_tup = (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
 
# printing original tuple
print("The original tuple is : " + str(test_tup))
 
# Replace duplicates in tuple
# using groupby() + loop
res = tuple()
for key, ele in groupby(test_tup):
    res = res + ((key, ) + ('gfg', ) * (len(list(ele))-1))
 
# printing result
print("Tuple after replacing values : " + str(res))


Output : 

The original tuple is : (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
Tuple after replacing values : (1, 'gfg', 4, 'gfg', 'gfg', 5, 'gfg', 6, 7, 'gfg')

 

Method#3:Using dict.fromkeys

Python3




# Python3 code to demonstrate working of
# Replace duplicates in tuple
# using dict.fromkeys and string value 'gfg'
 
# initialize tuple
test_tup = (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
 
# printing original tuple
print("The original tuple is : " + str(test_tup))
 
# Replace duplicates in tuple
# using dict.fromkeys and string value 'gfg'
temp = set()
res = tuple('gfg' if ele in temp or temp.add(ele)
                else ele for ele in test_tup)
 
# printing result
print("Tuple after replacing values : " + str(res))
#this code is contributed by Vinay pinjala.


Output

The original tuple is : (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
Tuple after replacing values : (1, 'gfg', 4, 'gfg', 'gfg', 5, 'gfg', 6, 7, 'gfg')

Time complexity: O(n)

Auxiliary Space: O(n)

Method#4: Using Recursive method.

Algorithm:

  1. Define a function named “replace_duplicates” which takes the following parameters:
              a) test_tup: The tuple which contains duplicate elements to be replaced.
              b) replace_word: The word which will replace the duplicate element(s).
              c) new_tup: A new tuple in which the replaced elements will be stored.
              d) start: The index position to start searching for duplicates in the tuple.
  2. Check if the length of the tuple is equal to the start index, if it is, then return the new tuple.
  3. Check if the current element at the start index is already present in the new tuple. If it is, then append the replace_word to the new tuple.
  4. If the element is not present in the new tuple, then append the element to the new tuple.
  5. Return the result of the function by recursively calling the function and incrementing the start index by 1.
  6. Initialize a tuple named “test_tup” with some duplicate elements.
  7. Print the original tuple.
  8. Call the “replace_duplicates” function and pass the “test_tup” tuple as the parameter.
  9. Print the resulting tuple after replacing the duplicates.

Python3




# Python3 code to demonstrate working of
# Replace duplicates in tuple
def replace_duplicates(test_tup,replace_word='gfg',new_tup=(),start=0):
  if len(test_tup)==start:return new_tup
  if test_tup[start] in new_tup:
    new_tup=new_tup+(replace_word,)
  else:
    new_tup=new_tup+(test_tup[start],)
  return replace_duplicates(test_tup,replace_word,new_tup,start+1)
# initialize tuple
test_tup = (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
 
# printing original tuple
print("The original tuple is : " + str(test_tup))
 
# Replace duplicates in tuple
res = replace_duplicates(test_tup)
 
# printing result
print("Tuple after replacing values : " + str(res))


Output

The original tuple is : (1, 1, 4, 4, 4, 5, 5, 6, 7, 7)
Tuple after replacing values : (1, 'gfg', 4, 'gfg', 'gfg', 5, 'gfg', 6, 7, 'gfg')

Time Complexity: O(n^2) [due to checking for duplicates in the new tuple for every element in the original tuple]
Space Complexity: O(n) [due to creating a new tuple to store the replaced elements]



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads