Compress string in-place using counts of repeated characters. For example, "aabcccccaaa" becomes "a2b1c5a3".
One line string s.
Compressed string (if shorter than original).
Example 1:
Input:
s = "aabcccccaaa"
Output:
a2b1c5a3
Explanation:
Consecutive counts of each letter.