문제
https://school.programmers.co.kr/learn/courses/30/lessons/12930
설계
- 문자열의 인덱스가 아니라 공백으로 구분되는 각 단어 기준 짝홀을 구분해야 한다.
- 공백이 연속으로 오는 경우를 생각하여 홀짝을 잘 구분해야 한다.
def solution(s):
arr = list(s)
index = 0 # 홀짝을 비교하는 index
for i in range(len(arr)):
if arr[i] == ' ':
index = 0 # 공백일 경우 index 초기화
elif index % 2 == 0:
arr[i] = arr[i].upper()
index += 1
else:
arr[i] = arr[i].lower()
index += 1
answer = ''.join(s for s in arr) # list -> str 변환
return answer
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 124 나라의 숫자 - 파이썬 (0) | 2023.01.10 |
---|---|
[프로그래머스] 할인 행사 - 자바스크립트, 파이썬 (0) | 2023.01.08 |
[프로그래머스] 거리두기 확인하기 - 파이썬 (0) | 2022.12.23 |
[프로그래머스] 혼자 놀기의 달인 - 파이썬 (0) | 2022.12.19 |
[프로그래머스] 숫자 카드 나누기 - 파이썬 (0) | 2022.12.18 |