728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181869
소스코드
#include <string>
#include <vector>
#include<sstream>
using namespace std;
vector<string> solution(string my_string) {
vector<string> answer;
string temp;
for (int i = 0; i < my_string.size(); i++)
{
if (my_string[i] == ' ')
{
answer.push_back(temp);
temp.clear();
}
else {
temp += my_string[i];
}
}
answer.push_back(temp);
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 x 간단한 식 계산하기 C++ (stringstream, 비트연산) (0) | 2023.08.07 |
---|---|
[프로그래머스]Lv.0 x 사이의 개수 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.0 ad 제거하기 C++ ( find) (0) | 2023.08.07 |
[프로그래머스]Lv.0 문자열이 몇 번 등장하는지 세기 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.0 수열과 구간 쿼리 3 C++ (0) | 2023.08.07 |