String Compression Problem Statement

Ninja needs to perform basic string compression. For any character that repeats consecutively more than once, replace the repeated sequence with the character followed by the count of repetitions.

Input:

An integer 'T' representing the number of test cases.
For each test case, a string 'S' indicating the input string to be compressed.

Output:

Output the compressed string for each test case on a new line.

Example:

If the string contains 'x' repeated 5 times, replace 'xxxxx' with 'x5'.
Compression occurs only if the repeated count is greater than 1.

Constraints:

  • 1 ≤ T ≤ 5
  • 1 ≤ |S| ≤ 5000
  • Consecutive count of any character in the input is ≤ 9
Note:

There's no need for input or output operations, as these are already managed. Just implement the required function.

vishal aggarwal
2y
/** Ninja has been given a program to do basic string compression. For a character that is consecutively repeated more than once, he needs to replace the consecutive duplicate occurrences with the c...read more
Help your peers!
Add answer anonymously...
Nagarro Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter