728x90
반응형
문제
코드
#include <iostream>
#include <vector>
using namespace std;
vector<int> solution(string myString) {
vector<int> answer;
int count = 0;
for (auto& c : myString)
{
if (c == 'x')
{
answer.emplace_back(count);
count = 0;
}
else
{
count++;
}
}
answer.emplace_back(count);
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 세 개의 구분자 (0) | 2023.11.22 |
---|---|
[프로그래머스/C++] Lv.0 문자열 잘라서 정렬하기 (0) | 2023.11.22 |
[프로그래머스/C++] Lv.0 공백으로 구분하기 2 (0) | 2023.11.21 |
[프로그래머스/C++] Lv.0 공백으로 구분하기 1 (0) | 2023.11.21 |
[프로그래머스/C++] Lv.0 ad 제거하기 (0) | 2023.11.20 |