Merge two strings alternately, starting with s1, until both are exhausted.
Constraints
Example
>>> interleave('abc', '123')
'a1b2c3'
>>> interleave('ab', '1234')
'a1b234'
>>> interleave('', 'xyz')
'xyz'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints