https://school.programmers.co.kr/learn/courses/30/lessons/155652
def solution(s, skip, index):
abc = [chr(i) for i in range(97, 123) if not chr(i) in skip]
answer = ''
for i in s:
answer += abc[(abc.index(i) + index)%len(abc)]
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 크기가 작은 부분 문자열 (0) | 2024.05.27 |
---|---|
[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 카드 뭉치 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 대충 만든 자판 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 덧칠하기 (0) | 2024.05.27 |