https://school.programmers.co.kr/learn/courses/30/lessons/12926#
def solution(s, n):
answer = ''
for i in s:
isLower = False
if i == ' ':
answer += ' '
else:
if i.isupper():
i=i.lower()
isLower = True
num = int(ord(i))
num = num + n
if num > 122:
num = 96 + (num - 122)
alpha = chr(num)
if isLower:
alpha=alpha.upper()
answer += alpha
return answer
'알고리즘' 카테고리의 다른 글
프로그래머스)연속 부부 수열 합의 개수-python (0) | 2023.02.13 |
---|---|
프로그래머스)모음사전-pyhton (0) | 2023.02.13 |
백준 2750)수 정렬하기 (0) | 2023.02.12 |
프로그래머스)괄호 변환-pyhton (0) | 2023.02.11 |
프로그래머스)콜라츠 추측 (0) | 2023.02.10 |