[프로그래머스] Level 1 - 이상한 문자 만들기
in Algorithm on Programmers, Problems
문제
문제 설명 및 풀이
upper와 lower 함수로 힘들게 아스키 코드를 만지지 않고 쉽게 풀 수 있다.
나의 코드
def solution(s):
answer = ''
idx = 0
for l in s:
if l == ' ':
answer += ' '
idx = 0
else:
if idx%2 == 0:
answer += l.upper()
else:
answer += l.lower()
idx += 1
return answer