Answers for "sort a string"

1

sort letters of a string

const sort = str => str.split('').sort((a, b) => a.localeCompare(b)).join('');

// Example:
sort('eat'); 
// Output:
// 'aet'
Posted by: Guest on October-25-2021
2

sort a string in python

#Sorted function returns the string as a list which we are converting to a string again using join
new_str=''.join(sorted(old_str))
Posted by: Guest on July-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language