문자열 정렬하기 2
https://school.programmers.co.kr/learn/courses/30/lessons/120911
📔 문제 설명
영어 대소문자로 이루어진 문자열 my_string이 매개변수로 주어질 때, my_string을 모두 소문자로 바꾸고 알파벳 순서대로 정렬한 문자열을 return 하도록 solution 함수를 완성해보세요.
💡 입출력 예
my_string | result |
---|---|
“Bcad” | “abcd” |
“heLLo” | “ehllo” |
“Python” | “hnopty” |
💻내가 작성한 코드
1
2
3
4
5
6
7
function solution(my_string) {
return my_string
.toLowerCase()
.split("")
.sort((a, b) => (a < b ? -1 : 1))
.join("");
}
This post is licensed under CC BY 4.0 by the author.