Question: IN PYTHON .. HAS TO BE DONE USING RECURSIVE METHOD !!!! def remove_duplicates(msg): This function creates a new string that removes duplicates from consecutive spots
IN PYTHON .. HAS TO BE DONE USING RECURSIVE METHOD !!!!
def remove_duplicates(msg): This function creates a new string that removes duplicates from consecutive spots (any time a character is repeated, the repeats are no longer present in the output) .
Assume: msg is a string.
Examples:
remove_duplicates("abbcccccaaabcc")"abcabc"
remove_duplicates("1000000 is a million")"10 is a milion"
remove_duplicates("")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
