글자 지우기
https://school.programmers.co.kr/learn/courses/30/lessons/181900
📔 문제 설명
문자열 my_string과 정수 배열 indices가 주어질 때, my_string에서 indices의 원소에 해당하는 인덱스의 글자를 지우고 이어 붙인 문자열을 return 하는 solution 함수를 작성해 주세요.
💡 입출력 예
my_string | indices | result |
---|---|---|
“apporoograpemmemprs” | [1, 16, 6, 15, 0, 10, 11, 3] | “programmers” |
💻내가 작성한 코드
1
2
3
4
5
6
function solution(my_string, indices) {
return my_string
.split("")
.filter((str, idx) => !indices.includes(idx))
.join("");
}
This post is licensed under CC BY 4.0 by the author.