🔗 문제
https://school.programmers.co.kr/learn/courses/30/lessons/181900
문제 설명
문자열 my_string
과 정수 배열 indices
가 주어질 때, my_string
에서 indices
의 원소에 해당하는 인덱스의 글자를 지우고 이어 붙인 문자열을 return 하는 solution 함수를 작성해 주세요.
제한사항
- 1 ≤
indices
의 길이 <my_string
의 길이 ≤ 100 my_string
은 영소문자로만 이루어져 있습니다- 0 ≤
indices
의 원소 <my_string
의 길이 indices
의 원소는 모두 서로 다릅니다.
입출력 예
my_string | indices | result |
"apporoograpemmemprs" | [1, 16, 6, 15, 0, 10, 11, 3] | "programmers" |
💻 Code
def solution(my_string, indices):
return ''.join([s for idx, s in enumerate(my_string) if idx not in indices])
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Lv.0/Python] 가장 큰 수 찾기 (0) | 2023.07.05 |
---|---|
[Lv.0/Python] 순서 바꾸기 (0) | 2023.07.05 |
[Lv.0/Python] 세로 읽기 (0) | 2023.07.05 |
[Lv.0/Python] 한 번만 등장한 문자 (0) | 2023.07.05 |
[Lv.0/Python] 숨어있는 숫자의 덧셈 (2) (0) | 2023.07.05 |