Error
|
|
---|---|
@Ibrahim Nash | 5761 |
@blackshadows | 5701 |
@akhayrutdinov | 5111 |
@mb1973 | 4989 |
@Quandray | 4944 |
@saiujwal13083 | 4506 |
@sanjay05 | 3762 |
@marius_valentin_dragoi | 3516 |
@sushant_a | 3459 |
@verma_ji | 3341 |
@KshamaGupta | 3318 |
Complete Leaderboard | |
|
|
@aroranayan999 | 938 |
@bt8816103042 | 739 |
@SHOAIBVIJAPURE | 428 |
@codeantik | 412 |
@SherlockHolmes3 | 407 |
@neverevergiveup | 348 |
@mahlawatep | 347 |
@shalinibhataniya1097 | 343 |
@murarry3625 | 333 |
@saiujwal13083 | 326 |
@rohitanand | 314 |
Complete Leaderboard |
Compress the string when lower and upper case are same. In compressed string characters should be in lowercase.
for ex: input aaABBb
output 3a3b
Input
Output
For each test case, output the required string.
Constraints
• 1 ≤ T ≤ 101
• 1 ≤ |s|≤ 1000
Example
Input:
3
aabbB
abc
aaacca
Output:
2a3b
1a1b1c
3a2c1a
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes