728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<string> solution(string my_string) {
vector<string> answer;
stringstream ss(my_string);
string str;
while(ss >> str)
{
answer.emplace_back(str);
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 문자열 잘라서 정렬하기 (0) | 2023.11.22 |
---|---|
[프로그래머스/C++] Lv.0 x 사이의 개수 (0) | 2023.11.22 |
[프로그래머스/C++] Lv.0 공백으로 구분하기 1 (0) | 2023.11.21 |
[프로그래머스/C++] Lv.0 ad 제거하기 (0) | 2023.11.20 |
[프로그래머스/C++] Lv.0 문자열이 몇 번 등장하는지 세기 (0) | 2023.11.19 |