题解 | #图片整理#
图片整理
http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941
while(line = readline()) {
const arr = line.split('').map(x => x.charCodeAt());
arr.sort((a, b) => a - b);
print(arr.map(x => String.fromCharCode(x)).join(''));
}