연습문제 : 햄버거 만들기 Lv.1
https://school.programmers.co.kr/learn/courses/30/lessons/133502
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
import java.util.Stack;
class Solution {
public int solution(int[] ingredient) {
int answer = 0;
Stack<Integer> s = new Stack<Integer>();
for (int idx : ingredient) {
s.push(idx);
if (s.size() >= 4) {
if (s.get(s.size() - 1) == 1 && s.get(s.size() - 2) == 3 && s.get(s.size() - 3) == 2 && s.get(s.size() - 4) == 1) {
answer++;
s.pop();
s.pop();
s.pop();
s.pop();
}
}
}
return answer;
}
}