728x90
https://school.programmers.co.kr/learn/courses/30/lessons/133502?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> ingredient) {
int answer = 0;
string str;
for (int i = 0; i < ingredient.size(); i++)
{
str += to_string(ingredient[i]);
if (str.size() < 4)
continue;
string temp = str.substr(str.size()-4);
if (temp == "1231")
{
answer++;
str= str.substr(0, str.size()-4);
}
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 콜라 문제 C++ (0) | 2023.09.07 |
---|---|
[프로그래머스]Lv1 옹알이 (2) C++ (0) | 2023.08.24 |
[프로그래머스]Lv1 푸드 파이트 대회 C++ (0) | 2023.08.17 |
[프로그래머스]Lv1 과일 장수 C++ (0) | 2023.08.17 |
[프로그래머스]Lv1 가장 가까운 같은 글자 C++ (0) | 2023.08.11 |