반응형
https://programmers.co.kr/learn/courses/30/lessons/12930
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <iostream>
using namespace std;
string solution(string s) {
string answer = "";
int location=0;
for(size_t i=0; i< s.size(); i++){
if(isspace(s[i])){
location =0;
answer += s[i];
continue;
}
if((islower(s[i])) && (0== location%2)){
answer += (s[i]-32);
}
else if((isupper(s[i])) && (1== location%2)){
answer += (s[i]+32);
}
else{
answer += s[i];
}
location ++;
}
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 자연수 뒤집어 배열로 만들기 (0) | 2022.03.19 |
---|---|
[프로그래머스][C++] 자릿수 더하기 (0) | 2022.03.19 |
[프로그래머스][C++] 약수의 합 (0) | 2022.03.19 |
[프로그래머스][C++] 시저 암호 (0) | 2022.03.19 |
[프로그래머스][C++] 문자열을 정수로 바꾸기 (0) | 2022.03.19 |