🔺 문제 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🔺 코드 import java.util.*; class Solution { // 도난 여벌 public int solution(int n, int[] lost, int[] reserve) { int answer = 0; int[] arr = new int[n]; Arrays.fill(arr, 1); // 배열 1로 채우기 boolean[] std = new boolean[n]; Arrays.fill(std, true); // 배열 true로 채우기 // lost, reserve 반영하기 for(int..