logo CodeStepByStep logo

compressString

Language/Type: Java algorithms interview strings
Related Links:

Write a method named compressString that accepts a string as a parameter and returns a new string that replaces repeated characters with a single occurrence of that character followed by the number of its occurrences. For example, the call of compressString("AABAAABBBCCCCDEEEEEE") should return "A2B1A3B3C4D1E6".

Method: Write a Java method as described, not a complete program or class.

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.