https://school.programmers.co.kr/learn/courses/30/lessons/64061 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr public int solution(int[][] board, int[] moves) { int answer = 0; Stack stack = new Stack(); for (int num : moves) { for (int j = 0; j 📍포인트1. 알맞은 숫자를 누적해가는 로직 필요.2. 숫자를 빼면 0으로 처리.3. 중복을 없애며 answer을 2씩 증가하는로직 필요. 📍삽질1. stack 문제는 ..