logo CodeStepByStep logo

collapse_sequences

Language/Type: Python recursion string return

Write a recursive function named collapse_sequences that accepts a string s and c as parameters and returns a new string that is the same as s but with any sequences of consecutive occurrences of c compressed into a single occurrence of c. For example, if we collapse sequences of character 'a' in the string "aabaaccaaaaada", you get "abaccada".

Your function is case-sensitive if the character c is, for example, a lowercase 'f', your function should not collapse sequences of uppercase 'F' characters. In other words, you do not need to write code to handle case issues in this problem.

The following table shows several calls and their expected return values:

Call Returns
collapse_sequences("aabaaccaaaaaada", 'a') "abaccada"
collapse_sequences("mississssipppi", 's') "misisipppi"
collapse_sequences("babbbbebbbxbbbbbb", 'b') "babebxb"
collapse_sequences("palo alto", 'o') "palo alto"
collapse_sequences("tennessee", 'x') "tennessee"
collapse_sequences("", 'x') ""

Constraints: Do not declare any global variables. Do not use any loops you must use recursion. Do not call any of the following string member functions: find, rfind, index_of, contains, replace, split. (The poof this problem is to solve it recursively do not use a library function to get around recursion.) Do not use any auxiliary data structures like list, dict, set, etc. You can declare as many primitive variables like ints as you like, as well as strings. You are allowed to define other "helper" functions if you like they are subject to these same constraints.

Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.