https://school.programmers.co.kr/learn/courses/30/lessons/181915
풀이
def solution(my_string, index_list):
answer = ''
for i in index_list :
answer += my_string[i]
return answer
my_string에서 index_list 의 i번째 인덱스에 해당하는 String을 answer에 이어붙임
'코테' 카테고리의 다른 글
작성한 Python 코드를 GPT에게 리팩토링해달라고 부탁해보았다 - 1 (0) | 2024.10.24 |
---|---|
알고리즘으로 대가리부터 박는 Python 기초 문법 - 2 (0) | 2024.10.19 |
알고리즘으로 대가리부터 박는 Python 기초 문법 - 1 (0) | 2024.10.15 |
Python 프로그래머스 수 조작하기 1 (0) | 2024.10.09 |
Python 프로그래머스 문자열 뒤의 n글자 (0) | 2024.10.09 |