Rearrange the characters of a given string in sorted order and return the result.
Constraints
Example
>>> sort_string('hello')
'ehllo'
>>> sort_string('Python')
'Phnoty'
>>> sort_string('')
''
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints