(23.05.15)
이것도 왜인지 모르게 깃허브 자동 업로드에 오류가 났다!!!
https://school.programmers.co.kr/learn/courses/30/lessons/12930#
고려해야할 테스트 케이스가 많은 문제였다.
def solution(s):
answer = ''
index = 0
for i in range(len(s)):
if i==0 and s[i]==' ':
answer += ' '
elif i>0 and s[i]==' ':
answer += ' '
index = 0
elif index%2 == 0:
answer += s[i].upper()
index += 1
elif index%2 != 0:
answer += s[i].lower()
index += 1
return answer
728x90
'Coding > Python' 카테고리의 다른 글
DFS, BFS 정리 (0) | 2023.06.19 |
---|---|
[Python] 소수 판별 알고리즘 (기본, 제곱근, 에라토스테네스의 체) (0) | 2023.05.16 |
[Programmers] lv.0 등수매기기 (python) (0) | 2023.05.10 |
[Python] 문자열 관련 문제들 (''.join(), sorted 활용하기) (0) | 2023.05.09 |
[Programmers] LV.1 이상한 문자 만들기 (python) (0) | 2023.04.19 |