728x90
반응형
문제
코드
#include <algorithm>
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
vector<string> solution(string myString) {
vector<string> answer;
for (auto& c : myString)
{
if (c == 'x')
{
c = ' ';
}
}
stringstream ss(myString);
string str;
while (ss >> str)
{
answer.emplace_back(str);
}
sort(answer.begin(), answer.end());
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 배열에 원소만큼 추가하기 (0) | 2023.11.22 |
---|---|
[프로그래머스/C++] Lv.0 세 개의 구분자 (0) | 2023.11.22 |
[프로그래머스/C++] Lv.0 x 사이의 개수 (0) | 2023.11.22 |
[프로그래머스/C++] Lv.0 공백으로 구분하기 2 (0) | 2023.11.21 |
[프로그래머스/C++] Lv.0 공백으로 구분하기 1 (0) | 2023.11.21 |