💡 문제IPOhttps://leetcode.com/problems/ipo/권장 시간1시간소요 시간1시간 40분 + a나의 풀이 코드import java.util.*;class Solution { private class Project { int capital; int profit; Project(int capital, int profit) { this.capital = capital; this.profit = profit; } } public int findMaximizedCapital(int k, int w, int[] profits, int[] capital) { ArrayList ..