Decode a run-length encoded string like 'a3b2' into 'aaabb'.
Constraints
Example
>>> expand('a3b2')
'aaabb'
>>> expand('ab2')
'abb'
>>> expand('x10')
'xxxxxxxxxx'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints