문제 링크
https://programmers.co.kr/learn/courses/30/lessons/12951
C++ 풀이
#include <string>
#include <vector>
using namespace std;
string solution(string s) {
int i = 0;
while (i < s.length()) {
while (s[i] == ' ')
i++;
s[i] = toupper(s[i]);
do {
i++;
s[i] = tolower(s[i]);
} while ((i < s.length()) && (s[i] != ' '));
}
return s;
}
공백문자가 연속으로 나올 수 있음을 유의해야한다.
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[프로그래머스] 행렬의 곱셈 (0) | 2020.03.02 |
---|---|
[프로그래머스] 시저 암호 (0) | 2020.02.25 |
[프로그래머스] 가장 큰 수 (0) | 2020.02.13 |
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.02.05 |
[프로그래머스] 최솟값 만들기 (0) | 2020.01.18 |