문제 출처:https://programmers.co.kr/learn/courses/30/lessons/12951
코드는 다음과 같습니다:
#include <string>
using namespace std;
string solution(string s) {
int gap = 'a' - 'A' ;
bool is_new_word = true ;
for(int i = 0 ; i < s.length() ; i++){
if(s[i] == ' ')
is_new_word = true ;
else if(is_new_word){
is_new_word = false ;
if('a' <= s[i] && s[i] <= 'z')
s[i] -= gap ;
}
else if('A' <= s[i] && s[i] <= 'Z')
s[i] += gap ;
}
return s;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/Programmers/P12951_JadenCase_Make_a_String.cpp
훈수 및 조언은 언제든 환영입니다.