본문 바로가기

PYTHON/CODING TEST

[programmers] 둘만의 암호

728x90

문제 링크

https://school.programmers.co.kr/learn/courses/30/lessons/155652

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

풀이

def solution(s, skip, index):
    l = [a for a in 'abcdefghijklmnopqrstuvwxyz' if a not in skip]
    answer = ''.join([l[(l.index(a)+index)%len(l)] for a in s])
    return answer

다른 분들 코드

def solution(s, skip, index):
    alphas = [chr(a) for a in range(ord("a"), ord("z")+1) if chr(a) not in skip]
    return "".join([alphas[(alphas.index(a) + index) % len(alphas)] for a in s])
728x90

'PYTHON > CODING TEST' 카테고리의 다른 글

[DFS/BFS] 음료수 얼려 먹기  (0) 2024.05.10
[programmers] 카드 뭉치  (0) 2023.02.19
[programmers] 외톨이 알파벳  (0) 2023.02.16
[programmers] 개인정보 수집 유효기간  (0) 2023.02.12
[programmers] 호텔 대실  (0) 2023.02.12