Turn long runs of identical bits into compact pairs.
Constraints
Example
>>> compress_bits_run('111000')
'31 30'
>>> compress_bits_run('0')
'10'
>>> compress_bits_run('101')
'11 10 11'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints