문제
풀이
#include <string>
#include <vector>
#include <cstring>
using namespace std;
string solution(string s) {
int n = 0;
for(int i=0; i<s.length(); i++, n++){
if(s[i] == ' '){
n=-1;
continue;
}
n&1?s[i]=tolower(s[i]):s[i]=toupper(s[i]);
}
return s;
}
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스] 제일 작은 수 제거하기 / erase , min_element (0) | 2022.02.23 |
---|---|
[프로그래머스]자릿수 더하기 / to_string (0) | 2022.02.21 |
[프로그래머스]시저암호 (0) | 2022.02.20 |
[프로그래머스] 문자열을 정수로 바꾸기 / stoi (0) | 2022.02.20 |
[프로그래머스] 약수의 합 (0) | 2022.02.17 |