Zwracaj znaki w ciągu w kolejności alfabetycznej

//alphabetize the characters in a string
return str.split('').sort().join('')
Gabriele Orlandi