Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 2차원 배열 출력
- TCP/IP
- CPU
- 크기가 작은 부분 문자열
- 동시성문제
- 프로그래머스
- frontPattern
- Queue
- stack
- 십진수 이진수 전환
- CPU bound
- 코딩테스트
- 가장 가까운 단어
- process
- green thread
- springMVC
- DICTIONARY
- Split
- reflection
- 문자열
- URL
- dns
- deque
- annotation
- http
- IO bound
- Spring
- java
- 문자열 내마음대로 정렬하기
- port
Archives
- Today
- Total
아무나개발하자
시저 암호 본문
문제
https://school.programmers.co.kr/learn/courses/30/lessons/12926#
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
풀이
"""
ABCDEFG .... Z
"""
from string import ascii_lowercase
from string import ascii_uppercase
def solution(s, n):
answer = ''
ans_list =[]
alphabet_list = list(ascii_lowercase)
alphabet_list_u = list(ascii_uppercase)
s_list = list(map(str, s))
for elem in s_list:
if (elem.isupper()):
idx = alphabet_list_u.index(elem)
idx = (idx + n) % 26
ans_list.append(alphabet_list_u[idx].upper())
elif (elem.islower()):
idx = alphabet_list.index(elem)
idx = (idx + n) % 26
ans_list.append(alphabet_list[idx].lower())
else:
ans_list.append(" ")
answer = "".join(ans_list)
return answer
출처 : https://school.programmers.co.kr/learn/courses/30/lessons/12926#