프로그래머스 133502 햄버거 만들기

1 개요[ | ]

프로그래머스 133502 햄버거 만들기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> ingredient) {
    int answer = 0;
    vector<int> v;
    for(int el: ingredient) {
        v.push_back(el);
        int size = v.size();
        if(size >=4 && v[size-4]==1 && v[size-3]==2 && v[size-2]==3 && v[size-1]==1) {
            answer++;
            int t=4;
            while(t--) v.pop_back();
        }
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}