반응형
programmers.co.kr/learn/courses/30/lessons/12930
#include <string>
using namespace std;
string solution(string s) {
int count = 0;
for(int i = 0; i<s.size(); i++){
if(s[i] ==' ')
count =0;
else{
if(count %2 ==0 && (s[i]>='a' && s[i]<='z' ) )
s[i] -=32;
else if(count %2 == 1 && ( s[i] >='A' && s[i] <= 'Z') )
s[i] +=32;
count++;
}
}
return s;
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
★55] 프로그래머스 실패율 (0) | 2020.10.25 |
---|---|
54] 프로그래머스 3진법 뒤집기 (0) | 2020.10.21 |
52] 프로그래머스 정수 제곱근 판별 (0) | 2020.10.15 |
51] 프로그래머스 콜라츠 추측 (0) | 2020.10.14 |
50] 프로그래머스 서울에서 김서방 찾기 (0) | 2020.09.26 |
댓글