💡풀이import java.util.*;class Solution { // 데이터의 각 행을 객체로 다루기 위한 내부 클래스 class Product { Map map; Product(int code, int date, int maximum, int remain) { map = new HashMap(); map.put("code", code); map.put("date", date); map.put("maximum", maximum); map.put("remain", remain); } // 이름(ext, sort_by)에 해당하는 값을 가져오는..