https://school.programmers.co.kr/learn/courses/30/lessons/250136 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 전수 조사 석유덩어리를 구분하기 위해 같은 덩어리일 경우 같은 숫자로 변경 2. 시추관을 하나씩 내려서 조사하기 import java.util.*; class Solution { public int solution(int[][] land) { int answer = 0; int index = 2; Map map = new HashMap(); map.put(0, 0); int n = land..